summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2016-11-03 12:48:40 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2016-11-03 12:48:40 +0100
commit80befa1983aab12c85f4b84f5c68c5123c9bf9e8 (patch)
tree3fb3715fdc46a8dbe401eb6fe4be1087a2164a42
parent0d97a96c6232095ff94778fdb8bc1ff45b676467 (diff)
downloadorg-mode-80befa1983aab12c85f4b84f5c68c5123c9bf9e8.tar.gz
ox-publish: Fix typo
* lisp/ox-publish.el (org-publish-cache-get-file-property): Fix typo.
-rw-r--r--lisp/ox-publish.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/ox-publish.el b/lisp/ox-publish.el
index 102f460..e64b2e7 100644
--- a/lisp/ox-publish.el
+++ b/lisp/ox-publish.el
@@ -1252,9 +1252,9 @@ will be created. Return VALUE."
(defun org-publish-cache-get-file-property
(filename property &optional default no-create project-name)
"Return the value for a PROPERTY of file FILENAME in publishing cache.
-Use cache file of PROJECT-NAME. Return the value of that
-PROPERTY or DEFAULT, if the value does not yet exist. If the
-entry will be created, unless NO-CREATE is not nil."
+Use cache file of PROJECT-NAME. Return the value of that PROPERTY,
+or DEFAULT, if the value does not yet exist. Create the entry,
+if necessary, unless NO-CREATE is non-nil."
;; Evtl. load the requested cache file:
(if project-name (org-publish-initialize-cache project-name))
(let ((pl (org-publish-cache-get filename)) retval)