From 107eb17cefb15e9a66b1301b970d5ca3aefc42d3 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola <nikodemus@random-state.net> Date: Sat, 26 Jan 2013 16:25:56 +0200 Subject: [PATCH] fix docstring of IOTA --- numbers.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numbers.lisp b/numbers.lisp index beebb58..7210123 100644 --- a/numbers.lisp +++ b/numbers.lisp @@ -52,7 +52,7 @@ and STEP. START defaults to 0 and STEP to 1. Examples: - (iota 4) => (0 1 2 3 4) + (iota 4) => (0 1 2 3) (iota 3 :start 1 :step 1.0) => (1.0 2.0 3.0) (iota 3 :start -1 :step -1/2) => (-1 -3/2 -2) " -- GitLab