Parcourir la source

lisp/org-macs.el: Minor docstring enhancements

* lisp/org-macs.el (org-assert-version): Minor docstring enhancements.
Bastien il y a 3 ans
Parent
commit
fd195266dd
1 fichiers modifiés avec 3 ajouts et 2 suppressions
  1. 3 2
      lisp/org-macs.el

+ 3 - 2
lisp/org-macs.el

@@ -37,17 +37,18 @@
 ;;; Org version verification.
 ;;; Org version verification.
 
 
 (defmacro org-assert-version ()
 (defmacro org-assert-version ()
-  "Assert compile time and runtime verstion match."
+  "Assert compile time and runtime version match."
   `(unless (equal (org-git-version) ,(org-git-version))
   `(unless (equal (org-git-version) ,(org-git-version))
      (warn "Org version mismatch.  Make sure that correct `load-path' is set early in init.el
      (warn "Org version mismatch.  Make sure that correct `load-path' is set early in init.el
 This warning usually appears when a built-in Org version is loaded
 This warning usually appears when a built-in Org version is loaded
 prior to the more recent Org version.
 prior to the more recent Org version.
 
 
 Version mismatch is commonly encountered in the following situations:
 Version mismatch is commonly encountered in the following situations:
+
 1. Emacs is loaded using literate Org config and more recent Org
 1. Emacs is loaded using literate Org config and more recent Org
    version is loaded inside the file loaded by `org-babel-load-file'.
    version is loaded inside the file loaded by `org-babel-load-file'.
    `org-babel-load-file' triggers the built-in Org version clashing
    `org-babel-load-file' triggers the built-in Org version clashing
-   the newer Org version attempted to be loaded later.
+   the newer Org version attempt to be loaded later.
 
 
    It is recommended to move the Org loading code before the
    It is recommended to move the Org loading code before the
    `org-babel-load-file' call.
    `org-babel-load-file' call.