summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomasz Anielak <tanielak@gmail.com>2015-10-31 12:38:58 +0100
committerTim Graham <timograham@gmail.com>2015-10-31 08:53:48 -0400
commit7648ceb06bbd3869ace9fe996cb5fdc8b14531c0 (patch)
tree75e72d85428ec1feabb4c08b58fb0f2bfee8dcc9
parentdd0e7f5301098372396c33698cd796fb6ac9d633 (diff)
downloaddjango-7648ceb06bbd3869ace9fe996cb5fdc8b14531c0.tar.gz
[1.8.x] Fixed typo in docs/topics/db/models.txt.
Backport of b67502fb8dccefa0c0a3b4a63f9053c4238a8a0c from master
-rw-r--r--docs/topics/db/models.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt
index 25230b1711..c68cb5bac2 100644
--- a/docs/topics/db/models.txt
+++ b/docs/topics/db/models.txt
@@ -1112,7 +1112,7 @@ Specifying the parent link field
As mentioned, Django will automatically create a
:class:`~django.db.models.OneToOneField` linking your child
-class back any non-abstract parent models. If you want to control the
+class back to any non-abstract parent models. If you want to control the
name of the attribute linking back to the parent, you can create your
own :class:`~django.db.models.OneToOneField` and set
:attr:`parent_link=True <django.db.models.OneToOneField.parent_link>`