diff --git a/dev/examples.el b/dev/examples.el index 3e0ca88..a50cb91 100644 --- a/dev/examples.el +++ b/dev/examples.el @@ -616,7 +616,8 @@ new list." (defexamples -iota (-iota 6) => '(0 1 2 3 4 5) - (-iota 4 2.5 -2) => '(2.5 0.5 -1.5 -3.5)) + (-iota 4 2.5 -2) => '(2.5 0.5 -1.5 -3.5) + (-iota -1) !!> wrong-type-argument) (defexamples -zip-with (-zip-with '+ '(1 2 3) '(4 5 6)) => '(5 7 9)