summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2011-12-06 19:20:21 +0100
committerBastien Guerry <bzg@altern.org>2011-12-06 19:20:21 +0100
commit92d305092a60c221ea263107dfba335543cac602 (patch)
treebd9bffee669a22c3031eb0b003c57cce13650acd
parentacfd6ff3bc16b02760588a3954f4c47a152db1c1 (diff)
downloadorg-mode-92d305092a60c221ea263107dfba335543cac602.tar.gz
Fix typos (already fixed in Emacs trunk.)
Thanks to Juanma Barranquero for spotting and fixing them in Emacs.
-rw-r--r--lisp/ob-ref.el2
-rw-r--r--lisp/ob.el4
-rw-r--r--lisp/org-publish.el2
3 files changed, 4 insertions, 4 deletions
diff --git a/lisp/ob-ref.el b/lisp/ob-ref.el
index 0ce5e86..fdfff32 100644
--- a/lisp/ob-ref.el
+++ b/lisp/ob-ref.el
@@ -73,7 +73,7 @@
"Parse a variable ASSIGNMENT in a header argument.
If the right hand side of the assignment has a literal value
return that value, otherwise interpret as a reference to an
-external resource and find it's value using
+external resource and find its value using
`org-babel-ref-resolve'. Return a list with two elements. The
first element of the list will be the name of the variable, and
the second will be an emacs-lisp representation of the value of
diff --git a/lisp/ob.el b/lisp/ob.el
index a8be6d5..5610924 100644
--- a/lisp/ob.el
+++ b/lisp/ob.el
@@ -540,7 +540,7 @@ block."
(defun org-babel-expand-body:generic (body params &optional var-lines)
"Expand BODY with PARAMS.
-Expand a block of code with org-babel according to it's header
+Expand a block of code with org-babel according to its header
arguments. This generic implementation of body expansion is
called for languages which have not defined their own specific
org-babel-expand-body:lang function."
@@ -2217,7 +2217,7 @@ appropriate."
cell))
(defun org-babel-number-p (string)
- "If STRING represents a number return it's value."
+ "If STRING represents a number return its value."
(if (and (string-match "^-?[0-9]*\\.?[0-9]*$" string)
(= (length (substring string (match-beginning 0)
(match-end 0)))
diff --git a/lisp/org-publish.el b/lisp/org-publish.el
index 4b4f857..1518efe 100644
--- a/lisp/org-publish.el
+++ b/lisp/org-publish.el
@@ -717,7 +717,7 @@ If :auto-sitemap is set, publish the sitemap too.
If :makeindex is set, also produce a file theindex.org."
(mapc
(lambda (project)
- ;; Each project uses it's own cache file:
+ ;; Each project uses its own cache file:
(org-publish-initialize-cache (car project))
(let*
((project-plist (cdr project))