소스 검색

org-element: Fix docstring

* lisp/org-element.el (org-element-footnote-reference-interpreter):
  Fix docstring.
Nicolas Goaziou 11 년 전
부모
커밋
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)))))