Forráskód Böngészése

ox.el: Fix typos

* org-table.el (orgtbl-apply-fmt): Enhance docstring.
Bastien Guerry 12 éve
szülő
commit
3f4028312e
1 módosított fájl, 3 hozzáadás és 3 törlés
  1. 3 3
      lisp/ox.el

+ 3 - 3
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)