Fix error in example

This commit is contained in:
Lassi Kortela 2022-12-07 16:27:35 +02:00
parent 0c053e8624
commit 3b654e106e
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ may be mutated; the generator remembers the old cdr.
## Examples
```
> (generator->list (floyd-generator '((1 2 3 4) '(a b c d) '(x y z))))
> (generator->list (floyd-generator '((1 2 3 4) (a b c d) (x y z))))
((1 a x)
(2 b y)
(3 c z))