From 1dc78402dcc2910bd0d53f76d96470035c34616e Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 2 Nov 2016 09:16:35 +0100 Subject: [PATCH] ox-publish: Fix typo in docstring * lisp/ox-publish.el (org-publish-cache-get-file-property): Fix typo. --- lisp/ox-publish.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/ox-publish.el b/lisp/ox-publish.el index 0d2cf6265..c8edc2c9e 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)