Browse Source

Fix docstrings

* lisp/org.el (org-next-visible-heading,
  org-previous-visible-heading): Shorten summary.  Fix typo.
Nicolas Goaziou 10 years ago
parent
commit
cf77de2c3a
1 changed files with 4 additions and 4 deletions
  1. 4 4
      lisp/org.el

+ 4 - 4
lisp/org.el

@@ -24087,21 +24087,21 @@ Stop at the first and last subheadings of a superior heading."
   (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
 
 (defun org-next-visible-heading (arg)
-  "Move to the next visible heading, respecting Org mode-specific structures.
+  "Move to the next visible heading.
 
 This function wraps `outline-next-visible-heading' with
 `org-with-limited-levels' in order to skip over inline tasks and
-resepct customization of `org-odd-levels-only'."
+respect customization of `org-odd-levels-only'."
   (interactive "p")
   (org-with-limited-levels
    (outline-next-visible-heading arg)))
 
 (defun org-previous-visible-heading (arg)
-  "Move to the next visible heading, respecting Org mode-specific structures.
+  "Move to the next visible heading.
 
 This function wraps `outline-previous-visible-heading' with
 `org-with-limited-levels' in order to skip over inline tasks and
-resepct customization of `org-odd-levels-only'."
+respect customization of `org-odd-levels-only'."
   (interactive "p")
   (org-with-limited-levels
    (outline-previous-visible-heading arg)))