summaryrefslogtreecommitdiff
path: root/docs/ref
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:42:53 -0400
commit108ff788cbcd0e1f492d1494dc95e7b2165340fd (patch)
treeea2421b52b62216ba8699becca36f37d9c393e40 /docs/ref
parentc7f6ffbdcf9ca8df905aebf73336ef9905771f7c (diff)
Fixed typo in docs/ref/contrib/postgres/fields.txt.
Diffstat (limited to 'docs/ref')
-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 fa9435bccd..5b666c428f 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::