diff options
| author | Paul Eggert | 2015-03-03 15:10:05 -0800 |
|---|---|---|
| committer | Paul Eggert | 2015-03-03 15:10:40 -0800 |
| commit | 5d9b1e100aa4ddb79471f7ec2347fdb65d6a9a70 (patch) | |
| tree | 06ae4add25d48f185015144e3d86c3a3d1d91a70 | |
| parent | 98284ef51c67fa69796946466337d426ab81f9ee (diff) | |
| download | emacs-5d9b1e100aa4ddb79471f7ec2347fdb65d6a9a70.tar.gz emacs-5d9b1e100aa4ddb79471f7ec2347fdb65d6a9a70.zip | |
Spelling fixes
| -rw-r--r-- | lisp/emacs-lisp/check-declare.el | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/generator.el | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/check-declare.el b/lisp/emacs-lisp/check-declare.el index c2639729fa9..8fc299d7e93 100644 --- a/lisp/emacs-lisp/check-declare.el +++ b/lisp/emacs-lisp/check-declare.el | |||
| @@ -130,7 +130,7 @@ With optional argument FULL, sums the number of elements in each element." | |||
| 130 | :group 'tools) | 130 | :group 'tools) |
| 131 | 131 | ||
| 132 | (defcustom check-declare-ext-errors nil | 132 | (defcustom check-declare-ext-errors nil |
| 133 | "When non-nil, warn abount functions not found in :ext." | 133 | "When non-nil, warn about functions not found in :ext." |
| 134 | :type 'boolean) | 134 | :type 'boolean) |
| 135 | 135 | ||
| 136 | (defun check-declare-verify (fnfile fnlist) | 136 | (defun check-declare-verify (fnfile fnlist) |
diff --git a/lisp/emacs-lisp/generator.el b/lisp/emacs-lisp/generator.el index 284de410580..8251682590e 100644 --- a/lisp/emacs-lisp/generator.el +++ b/lisp/emacs-lisp/generator.el | |||
| @@ -25,7 +25,7 @@ | |||
| 25 | 25 | ||
| 26 | ;; This package implements generators for Emacs Lisp through a | 26 | ;; This package implements generators for Emacs Lisp through a |
| 27 | ;; continuation-passing transformation. It provides essentially the | 27 | ;; continuation-passing transformation. It provides essentially the |
| 28 | ;; same generator API and iterator facilties that Python and | 28 | ;; same generator API and iterator facilities that Python and |
| 29 | ;; JavaScript ES6 provide. | 29 | ;; JavaScript ES6 provide. |
| 30 | ;; | 30 | ;; |
| 31 | ;; `iter-lambda' and `iter-defun' work like `lambda' and `defun', | 31 | ;; `iter-lambda' and `iter-defun' work like `lambda' and `defun', |
| @@ -57,7 +57,7 @@ | |||
| 57 | ;; and each iterator maintains its own internal state. | 57 | ;; and each iterator maintains its own internal state. |
| 58 | ;; | 58 | ;; |
| 59 | ;; This raw form of iteration is general, but a bit awkward to use, so | 59 | ;; This raw form of iteration is general, but a bit awkward to use, so |
| 60 | ;; this library also provides soem convenience functions: | 60 | ;; this library also provides some convenience functions: |
| 61 | ;; | 61 | ;; |
| 62 | ;; `iter-do' is like `cl-do', except that instead of walking a list, | 62 | ;; `iter-do' is like `cl-do', except that instead of walking a list, |
| 63 | ;; it walks an iterator. `cl-loop' is also extended with a new | 63 | ;; it walks an iterator. `cl-loop' is also extended with a new |