summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Foord <michael@voidspace.org.uk>2013-03-18 12:18:39 -0700
committerMichael Foord <michael@voidspace.org.uk>2013-03-18 12:18:39 -0700
commit0dcbd0789acd58273bff38a3ae6e016ab5e37883 (patch)
tree6b09bfd79081c2cadf52edf041c6c20c4a383ac3
parent42d126d9a2ba0487b72faa848fbe2724d6c90012 (diff)
downloadmock-0dcbd0789acd58273bff38a3ae6e016ab5e37883.tar.gz
Typo fix
-rw-r--r--README.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.txt b/README.txt
index 677faf9..327dc24 100644
--- a/README.txt
+++ b/README.txt
@@ -59,7 +59,7 @@ raise an exception when a mock is called::
...
>>> mock.side_effect = side_effect
>>> mock('a'), mock('b'), mock('c')
- (3, 2, 1)
+ (1, 2, 3)
>>> mock.side_effect = [5, 4, 3, 2, 1]
>>> mock(), mock(), mock()
(5, 4, 3)