diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2014-01-26 23:46:13 +0100 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2014-01-26 23:46:13 +0100 |
commit | 420bd3703717623491e710cc63ba57fa1561ab8e (patch) | |
tree | 450883865f56560b0f5a96614acc186e056d2281 /docs/recipes.rst | |
parent | 410ebca42cccaa5d5ef24c7bcfc646aa27ff7088 (diff) | |
download | factory-boy-420bd3703717623491e710cc63ba57fa1561ab8e.tar factory-boy-420bd3703717623491e710cc63ba57fa1561ab8e.tar.gz |
Typo
Diffstat (limited to 'docs/recipes.rst')
-rw-r--r-- | docs/recipes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/recipes.rst b/docs/recipes.rst index 9e07413..7a6bf23 100644 --- a/docs/recipes.rst +++ b/docs/recipes.rst @@ -66,7 +66,7 @@ Example: Django's Profile """"""""""""""""""""""""" Django (<1.5) provided a mechanism to attach a ``Profile`` to a ``User`` instance, -using a :class:`~django.db.models.ForeignKey` from the ``Profile`` to the ``User``. +using a :class:`~django.db.models.OneToOneField` from the ``Profile`` to the ``User``. A typical way to create those profiles was to hook a post-save signal to the ``User`` model. |