diff options
-rw-r--r-- | docs/introduction.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/introduction.rst b/docs/introduction.rst index 356e11f..4dc1168 100644 --- a/docs/introduction.rst +++ b/docs/introduction.rst @@ -99,7 +99,7 @@ This is achieved with the :class:`~factory.Sequence` declaration: >>> UserFactory() <User: user2> -.. note:: For more complex situations, you may also use the :meth:`~factory.@sequence` decorator: +.. note:: For more complex situations, you may also use the :meth:`~factory.@sequence` decorator (note that ``self`` is not added as first parameter): .. code-block:: python @@ -107,7 +107,7 @@ This is achieved with the :class:`~factory.Sequence` declaration: FACTORY_FOR = models.User @factory.sequence - def username(self, n): + def username(n): return 'user%d' % n |