summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2016-11-02 09:16:35 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2016-11-02 09:16:35 +0100
commit1dc78402dcc2910bd0d53f76d96470035c34616e (patch)
tree0cccee280cb8ad117eecf0852e0508bfa328c969
parente010215e82c0ecd7dfdd2fc344e74a8dea7ca536 (diff)
downloadorg-mode-1dc78402dcc2910bd0d53f76d96470035c34616e.tar.gz
ox-publish: Fix typo in docstring
* 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 0d2cf62..c8edc2c 100644
--- a/lisp/ox-publish.el
+++ b/lisp/ox-publish.el
@@ -1250,9 +1250,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. If the
+entry will be created, unless NO-CREATE is not nil."
;; Evtl. load the requested cache file:
(if project-name (org-publish-initialize-cache project-name))
(let ((pl (org-publish-cache-get filename)) retval)