aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorColin Okay <cbeok@protonmail.com>2020-07-10 09:16:06 -0500
committerColin Okay <cbeok@protonmail.com>2020-07-10 09:16:06 -0500
commitd83e256d81d951b3d55711a725d00c6298887200 (patch)
tree059067003f145c1fcffca3852479999ab79f39b8
parent6989701ce4d04f4a2964271054ef6ff70c564b5d (diff)
typos
-rw-r--r--gtwiwtg.lisp5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtwiwtg.lisp b/gtwiwtg.lisp
index aef78cd..1ff74fa 100644
--- a/gtwiwtg.lisp
+++ b/gtwiwtg.lisp
@@ -7,14 +7,15 @@
(defgeneric next (gen)
(:documentation "Returns the next value of this generator, if
- available. Unspecified behavior if the generator has been exausted."))
+ available. Unspecified behavior if the generator has been exhausted."))
(defgeneric has-next-p (gen)
(:documentation "Returns true if next can be called on the generator"))
(defgeneric stop (gen)
(:documentation "Explicitly stops the generator. Specialize :after
- methods with any generator clean-up that needs to be done."))
+ methods to implement any clean-up that needs to be done when the
+ generator finishes."))
;;; Base Generator Class ;;;