summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-04-07 10:03:37 +0200
committerBastien Guerry <bzg@altern.org>2013-04-07 10:03:37 +0200
commit3f4028312e538efae5fb38862c7d28ce6a0942e7 (patch)
tree3a6f231c83e35c0c1982dbcb758d11e9352a6941
parent1f8822101b646bad308b3b10c742c2eb19a28a89 (diff)
downloadorg-mode-3f4028312e538efae5fb38862c7d28ce6a0942e7.tar.gz
ox.el: Fix typos
* org-table.el (orgtbl-apply-fmt): Enhance docstring.
-rw-r--r--lisp/ox.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/ox.el b/lisp/ox.el
index 8a7dd07..ce297fd 100644
--- a/lisp/ox.el
+++ b/lisp/ox.el
@@ -1526,7 +1526,7 @@ for export. Return options as a plist."
;; is the keyword with "EXPORT_" appended to it.
(org-with-wide-buffer
(let (prop plist)
- ;; Make sure point is at an heading.
+ ;; Make sure point is at a heading.
(if (org-at-heading-p) (org-up-heading-safe) (org-back-to-heading t))
;; Take care of EXPORT_TITLE. If it isn't defined, use headline's
;; title as its fallback value.
@@ -4318,11 +4318,11 @@ All special columns will be ignored during export."
(eq special-column-p 'special))))
(defun org-export-table-has-header-p (table info)
- "Non-nil when TABLE has an header.
+ "Non-nil when TABLE has a header.
INFO is a plist used as a communication channel.
-A table has an header when it contains at least two row groups."
+A table has a header when it contains at least two row groups."
(let ((rowgroup 1) row-flag)
(org-element-map table 'table-row
(lambda (row)