Skip to content

Commit

Permalink
Fix typos in docs (Closes #159, closes #178, closes #188).
Browse files Browse the repository at this point in the history
  • Loading branch information
rbarrois committed Mar 3, 2015
1 parent 93e37c2 commit efa9d3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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_batch(10, first_name="Joe")
>>> len(users)
10
>>> [user.first_name for user in users]
Expand Down
2 changes: 1 addition & 1 deletion docs/orms.rst
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ To work, this class needs an `SQLAlchemy`_ session object affected to the :attr:
SQLAlchemy session to use to communicate with the database when creating
an object through this :class:`SQLAlchemyModelFactory`.

A (very) simple exemple:
A (very) simple example:

.. code-block:: python
Expand Down

0 comments on commit efa9d3c

Please sign in to comment.