From 50e450920428b82174d89782378009d071ccfb88 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Sat, 7 Mar 2026 23:49:00 +0000 Subject: [PATCH] typing error in prick.functions --- prick_functions.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prick_functions.lisp b/prick_functions.lisp index a551b64..d7e9bd9 100644 --- a/prick_functions.lisp +++ b/prick_functions.lisp @@ -53,7 +53,7 @@ If END is not given, return interval [0, START)." i.e. (remove-at-indices indices (l-1...l-m)) => (l_x where x is not in indices)." (declare (type list indices) - (type lst sequence)) + (type sequence lst)) (loop :for i :from 0 :to (1- (length lst)) :for item :in (coerce lst 'list) :if (not (member i indices))