changeset 94768:c30d898f0375

(org-call-with-arg, org-autoload): Fix typos in docstrings.
author Juanma Barranquero <lekktu@gmail.com>
date Thu, 08 May 2008 15:44:24 +0000
parents 8634b4393320
children d8317a95db16
files lisp/org/org-macs.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/org/org-macs.el	Thu May 08 15:43:49 2008 +0000
+++ b/lisp/org/org-macs.el	Thu May 08 15:44:24 2008 +0000
@@ -179,7 +179,7 @@
 (put 'org-let2 'lisp-indent-function 2)
 
 (defsubst org-call-with-arg (command arg)
-  "Call COMMAND interactively, but pretend prefix are was ARG."
+  "Call COMMAND interactively, but pretend prefix arg was ARG."
   (let ((current-prefix-arg arg)) (call-interactively command)))
 
 (defsubst org-current-line (&optional pos)
@@ -194,7 +194,7 @@
        (>= (match-end n) pos)))
 
 (defun org-autoload (file functions)
-  "Establish autoload for all FUNCTIONS in FILE, if not boutd already."
+  "Establish autoload for all FUNCTIONS in FILE, if not bound already."
   (let ((d (format "Documentation will be available after `%s.el' is loaded."
 		   file))
 	f)