summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-06-09 12:42:53 -0400
committerTim Graham <timograham@gmail.com>2017-06-09 12:43:19 -0400
commit109fd94c965ad8b13ec27e17f9ba8f5fbd286975 (patch)
treeab62944ff7cba18179d6f1e6d5a75740ff9e2f52
parentccb8297eeec1c2bcbb193d2ae37f081b2c418757 (diff)
[1.11.x] Fixed typo in docs/ref/contrib/postgres/fields.txt.
Backport of 108ff788cbcd0e1f492d1494dc95e7b2165340fd from master
-rw-r--r--docs/ref/contrib/postgres/fields.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/postgres/fields.txt b/docs/ref/contrib/postgres/fields.txt
index 33e48e2910..2048bb064e 100644
--- a/docs/ref/contrib/postgres/fields.txt
+++ b/docs/ref/contrib/postgres/fields.txt
@@ -559,7 +559,7 @@ name::
Multiple keys can be chained together to form a path lookup::
>>> 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
array::