summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2014-06-21 13:36:52 +0200
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2014-06-21 13:36:52 +0200
commit6269fef31787aba4956612febfa3f4944fda947b (patch)
tree5f1082fb472a6df55fdd22386e41b5c756db4dce /README.rst
parent52a66af1d9ca679c8c9653e254253b172d8ee1cc (diff)
downloadfactory-boy-6269fef31787aba4956612febfa3f4944fda947b.tar
factory-boy-6269fef31787aba4956612febfa3f4944fda947b.tar.gz
Fix typo (Closes #144).
Thanks to @clouserw for the report.
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index 0ba4a86..32b93bd 100644
--- a/README.rst
+++ b/README.rst
@@ -159,7 +159,7 @@ It is also possible to create a bunch of objects in a single call:
.. code-block:: pycon
- >>> users = USerFactory.build(10, first_name="Joe")
+ >>> users = UserFactory.build(10, first_name="Joe")
>>> len(users)
10
>>> [user.first_name for user in users]