aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorColin Okay <cbeok@protonmail.com>2020-07-11 22:24:38 -0500
committerColin Okay <cbeok@protonmail.com>2020-07-11 22:24:38 -0500
commit30378724486559df0c9e497069d67fba46ca0709 (patch)
treee302cf5678b41f8da688977dc8f373674b4c951f
parent9882e084874c5640feeac4390431a450c9edfeec (diff)
extraneous slot in with-slots
-rw-r--r--gtwiwtg.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtwiwtg.lisp b/gtwiwtg.lisp
index 3cf1871..a9460ec 100644
--- a/gtwiwtg.lisp
+++ b/gtwiwtg.lisp
@@ -63,7 +63,7 @@
(at 0) to (by 1) inclusive (comparator #'<))
(defmethod has-next-p ((g range-backed-generator!))
- (with-slots (to current comparator by at) g
+ (with-slots (to comparator by at) g
(or (not to)
(funcall comparator
(+ by at)