summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2014-01-26 23:46:13 +0100
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2014-01-26 23:46:13 +0100
commit420bd3703717623491e710cc63ba57fa1561ab8e (patch)
tree450883865f56560b0f5a96614acc186e056d2281
parent410ebca42cccaa5d5ef24c7bcfc646aa27ff7088 (diff)
downloadfactory-boy-420bd3703717623491e710cc63ba57fa1561ab8e.tar
factory-boy-420bd3703717623491e710cc63ba57fa1561ab8e.tar.gz
Typo
-rw-r--r--docs/recipes.rst2
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.