From 92d305092a60c221ea263107dfba335543cac602 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 6 Dec 2011 19:20:21 +0100 Subject: [PATCH] Fix typos (already fixed in Emacs trunk.) Thanks to Juanma Barranquero for spotting and fixing them in Emacs. --- lisp/ob-ref.el | 2 +- lisp/ob.el | 4 ++-- lisp/org-publish.el | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/ob-ref.el b/lisp/ob-ref.el index 0ce5e8649..fdfff329b 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 a8be6d511..5610924c4 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 4b4f857e4..1518efe59 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)) -- 2.11.4.GIT