Browse Source

org-element: Fix docstring

* lisp/org-element.el (org-element-footnote-reference-interpreter):
  Fix docstring.
Nicolas Goaziou 10 years ago
parent
commit
0ce82e53a1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/org-element.el

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