>From 3983fa28c3f0f66823cc1536cca34faa8fb16caf Mon Sep 17 00:00:00 2001
From: Stas Boukarev <stassats@gmail.com>
Date: Wed, 16 May 2012 00:53:20 +0400
Subject: [PATCH] Fix an example in the docstring of iota.

Was (iota 4) => (0 1 2 3 4), while should be (iota 4) => (0 1 2 3).
---
 numbers.lisp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/numbers.lisp b/numbers.lisp
index 03430cc..2674582 100644
--- a/numbers.lisp
+++ b/numbers.lisp
@@ -48,7 +48,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)
 "
-- 
1.7.9

