diff --git a/numbers.lisp b/numbers.lisp index beebb58d98bf5960640de910b29c8534d110f3a7..72101238fc1c18d86c31cfef3db95e35e79baa69 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) "