Browse Source

ox-publish: Fix typo in docstring

* lisp/ox-publish.el (org-publish-cache-get-file-property): Fix typo.
Nicolas Goaziou 8 years ago
parent
commit
1dc78402dc
1 changed files with 3 additions and 3 deletions
  1. 3 3
      lisp/ox-publish.el

+ 3 - 3
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)