summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2016-06-27 23:58:08 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2016-06-27 23:58:08 +0200
commita131fd1a1d1124c03952b0d41d4fd98da0a6fb55 (patch)
treebaefb72f6c5071eedd0ef6c8932ac790f27a674b
parent5e37a5c116b0e9361fa7d83ff106e0a36bfd4bee (diff)
downloadorg-mode-a131fd1a1d1124c03952b0d41d4fd98da0a6fb55.tar.gz
ox: Fix typo in comment
* lisp/ox.el (org-export-get-footnote-definition): Fix typo.
-rw-r--r--lisp/ox.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/ox.el b/lisp/ox.el
index 2b1f57c..e7b528c 100644
--- a/lisp/ox.el
+++ b/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))