From b67502fb8dccefa0c0a3b4a63f9053c4238a8a0c Mon Sep 17 00:00:00 2001 From: Tomasz Anielak Date: Sat, 31 Oct 2015 12:38:58 +0100 Subject: [PATCH] Fixed typo in docs/topics/db/models.txt. --- docs/topics/db/models.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt index ab6268b485a..28bbf89aa5c 100644 --- a/docs/topics/db/models.txt +++ b/docs/topics/db/models.txt @@ -1121,7 +1121,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 `