summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2014-07-06 19:06:54 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2014-07-06 19:06:54 +0200
commit0ce82e53a13c857e5548e8da8d59c2707fafab2e (patch)
treeb6376e6ac1c9d09f65a616f80b6aa73d68e089ad
parentca6ecf9e498e6c4750f279e9f0ea0185bc8b1d10 (diff)
downloadorg-mode-0ce82e53a13c857e5548e8da8d59c2707fafab2e.tar.gz
org-element: Fix docstring
* lisp/org-element.el (org-element-footnote-reference-interpreter): Fix docstring.
-rw-r--r--lisp/org-element.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-element.el b/lisp/org-element.el
index b69e9d1..ff45c7b 100644
--- a/lisp/org-element.el
+++ b/lisp/org-element.el
@@ -2788,7 +2788,7 @@ When at a footnote reference, return a list whose car is
(defun org-element-footnote-reference-interpreter (footnote-reference contents)
"Interpret FOOTNOTE-REFERENCE object as Org syntax.
-CONTENTS is nil."
+CONTENTS is its definition, when inline, or nil."
(format "[%s]"
(concat (or (org-element-property :label footnote-reference) "fn:")
(and contents (concat ":" contents)))))