common-lisp.net
/
projects/alexandria/alexandria.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
6ff8040
)
fix docstring of IOTA
author
Nikodemus Siivola
<nikodemus@random-state.net>
Sat, 26 Jan 2013 14:25:56 +0000 (16:25 +0200)
committer
Nikodemus Siivola
<nikodemus@random-state.net>
Sat, 26 Jan 2013 14:25:56 +0000 (16:25 +0200)
numbers.lisp
patch
|
blob
|
blame
|
history
diff --git
a/numbers.lisp
b/numbers.lisp
index
beebb58
..
7210123
100644
(file)
--- 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)
"