From dd32f294d0f2ff960d4ca1198fa77f350f613ccc Mon Sep 17 00:00:00 2001 From: John Lorentzson Date: Thu, 27 Mar 2025 23:39:09 +0100 Subject: [PATCH] Correct typo in NODE-DOTIMES definition --- wip-duuqnd/compiler.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wip-duuqnd/compiler.lisp b/wip-duuqnd/compiler.lisp index 598bc77..22f8971 100644 --- a/wip-duuqnd/compiler.lisp +++ b/wip-duuqnd/compiler.lisp @@ -53,7 +53,7 @@ (format t "~%~A:~%" else-label))) (defclass node-dotimes (node) - ((%spot-ref :accessor stop-ref :initarg :stop-ref + ((%stop-ref :accessor stop-ref :initarg :stop-ref :documentation "A reference giving a value of how many times to run the loop.") (%loopee-node :accessor loopee-node :initarg :loopee-node)))