fix docstring of IOTA
authorNikodemus Siivola <nikodemus@random-state.net>
Sat, 26 Jan 2013 14:25:56 +0000 (16:25 +0200)
committerNikodemus Siivola <nikodemus@random-state.net>
Sat, 26 Jan 2013 14:25:56 +0000 (16:25 +0200)
numbers.lisp

index beebb58..7210123 100644 (file)
@@ -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)
 "