diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-03-03 15:10:05 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-03-03 15:10:40 -0800 |
commit | 5d9b1e100aa4ddb79471f7ec2347fdb65d6a9a70 (patch) | |
tree | 06ae4add25d48f185015144e3d86c3a3d1d91a70 /lisp/emacs-lisp/generator.el | |
parent | 98284ef51c67fa69796946466337d426ab81f9ee (diff) | |
download | emacs-5d9b1e100aa4ddb79471f7ec2347fdb65d6a9a70.tar.gz emacs-5d9b1e100aa4ddb79471f7ec2347fdb65d6a9a70.tar.bz2 emacs-5d9b1e100aa4ddb79471f7ec2347fdb65d6a9a70.zip |
Spelling fixes
Diffstat (limited to 'lisp/emacs-lisp/generator.el')
-rw-r--r-- | lisp/emacs-lisp/generator.el | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ ;; 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 |