From d83e256d81d951b3d55711a725d00c6298887200 Mon Sep 17 00:00:00 2001 From: Colin Okay Date: Fri, 10 Jul 2020 09:16:06 -0500 Subject: typos --- gtwiwtg.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gtwiwtg.lisp') 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 ;;; -- cgit v1.2.3