Browse Source

ox: Fix typo in comment

* lisp/ox.el (org-export-get-footnote-definition): Fix typo.
Nicolas Goaziou 8 years ago
parent
commit
a131fd1a1d
1 changed files with 4 additions and 4 deletions
  1. 4 4
      lisp/ox.el

+ 4 - 4
lisp/ox.el

@@ -3704,10 +3704,10 @@ definition can be found, raise an error."
 		      '(footnote-definition footnote-reference)
 		    (lambda (f)
 		      (cond
-		       ;; Skip any footnote with a different
-		       ;; label. Also skip any standard footnote
-		       ;; reference with the same label since those
-		       ;; cannot contain a definition.
+		       ;; Skip any footnote with a different label.
+		       ;; Also skip any standard footnote reference
+		       ;; with the same label since those cannot
+		       ;; contain a definition.
 		       ((not (equal (org-element-property :label f) label)) nil)
 		       ((eq (org-element-property :type f) 'standard) nil)
 		       ((org-element-contents f))