diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/functions.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/functions.lisp b/lib/functions.lisp index 40e940a..dd9976d 100644 --- a/lib/functions.lisp +++ b/lib/functions.lisp @@ -27,7 +27,7 @@ each member is STEP distance apart." (loop :for i :from start :to (1- end) :by step :collect i))) -(fn take (n lst) (-> (fixnum list) list) +(fn take (n lst) (-> (fixnum sequence) sequence) "Return the first N elements of LST." (subseq lst 0 n)) |