瀏覽代碼

org-element: Fix docstring

* lisp/org-element.el (org-element-footnote-reference-interpreter):
  Fix docstring.
Nicolas Goaziou 10 年之前
父節點
當前提交
0ce82e53a1
共有 1 個文件被更改,包括 1 次插入1 次删除
  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)))))