]> git.eshelyaron.com Git - emacs.git/commitdiff
Spelling fixes
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 3 Mar 2015 23:10:05 +0000 (15:10 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 3 Mar 2015 23:10:40 +0000 (15:10 -0800)
lisp/emacs-lisp/check-declare.el
lisp/emacs-lisp/generator.el

index c2639729fa9b09e89ef877d82db4bc2c8f5ba505..8fc299d7e938d07a8944c1eef624992c71ebfca6 100644 (file)
@@ -130,7 +130,7 @@ With optional argument FULL, sums the number of elements in each element."
   :group 'tools)
 
 (defcustom check-declare-ext-errors nil
-  "When non-nil, warn abount functions not found in :ext."
+  "When non-nil, warn about functions not found in :ext."
   :type 'boolean)
 
 (defun check-declare-verify (fnfile fnlist)
index 284de41058049e2273d98b379d5996c5720b5ba3..8251682590e5f662b58001eb753e2149b2c1b1d9 100644 (file)
@@ -25,7 +25,7 @@
 
 ;; This package implements generators for Emacs Lisp through a
 ;; continuation-passing transformation.  It provides essentially the
-;; same generator API and iterator facilties that Python and
+;; same generator API and iterator facilities that Python and
 ;; JavaScript ES6 provide.
 ;;
 ;; `iter-lambda' and `iter-defun' work like `lambda' and `defun',
@@ -57,7 +57,7 @@
 ;; and each iterator maintains its own internal state.
 ;;
 ;; This raw form of iteration is general, but a bit awkward to use, so
-;; this library also provides soem convenience functions:
+;; this library also provides some convenience functions:
 ;;
 ;; `iter-do' is like `cl-do', except that instead of walking a list,
 ;; it walks an iterator.  `cl-loop' is also extended with a new