[1.10.x] Fixed typo in docs/ref/contrib/postgres/fields.txt.

Backport of 108ff788cbcd0e1f492d1494dc95e7b2165340fd from master
This commit is contained in:
Tim Graham 2017-06-09 12:42:53 -04:00
parent 7b2d4a95dc
commit 88b290470a

View File

@ -513,7 +513,7 @@ name::
Multiple keys can be chained together to form a path lookup:: Multiple keys can be chained together to form a path lookup::
>>> Dog.objects.filter(data__owner__name='Bob') >>> Dog.objects.filter(data__owner__name='Bob')
<QuerySet [<QuerySet <Dog: Rufus>]> <QuerySet [<Dog: Rufus>]>
If the key is an integer, it will be interpreted as an index lookup in an If the key is an integer, it will be interpreted as an index lookup in an
array:: array::