Procházet zdrojové kódy

org-element: Fix docstring

* lisp/org-element.el (org-element-footnote-reference-interpreter):
  Fix docstring.
Nicolas Goaziou před 10 roky
rodič
revize
0ce82e53a1
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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)))))