Quellcode durchsuchen

typos

	* ob-org.el (org-babel-org-export): typo in docstring

	* ob-eval.el (org-babel-eval): typo in docstring
Dan Davison vor 14 Jahren
Ursprung
Commit
03b0360ded
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 1 1
      lisp/ob-eval.el
  2. 1 1
      lisp/ob-org.el

+ 1 - 1
lisp/ob-eval.el

@@ -42,7 +42,7 @@
 
 (defun org-babel-eval (cmd body)
   "Run CMD on BODY.
-If CMD succeeds then return it's results, otherwise display
+If CMD succeeds then return its results, otherwise display
 STDERR with `org-babel-eval-error-notify'."
   (let ((err-buff (get-buffer-create "*Org-Babel Error*")) exit-code)
     (with-current-buffer err-buff (erase-buffer))

+ 1 - 1
lisp/ob-org.el

@@ -67,7 +67,7 @@ This function is called by `org-babel-execute-src-block'."
       (org-load-modules-maybe)
       (unless org-local-vars
 	(setq org-local-vars (org-get-local-variables)))
-      (eval ;; convert to fmt -- mimicing `org-run-like-in-org-mode'
+      (eval ;; convert to fmt -- mimicking `org-run-like-in-org-mode'
        (list 'let org-local-vars 
 	     (list (intern (concat "org-export-as-" fmt))
 		   nil nil nil ''string t))))))