diff options
| author | Tim Graham <timograham@gmail.com> | 2017-06-09 12:42:53 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-06-09 12:43:19 -0400 |
| commit | 109fd94c965ad8b13ec27e17f9ba8f5fbd286975 (patch) | |
| tree | ab62944ff7cba18179d6f1e6d5a75740ff9e2f52 | |
| parent | ccb8297eeec1c2bcbb193d2ae37f081b2c418757 (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.txt | 2 |
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:: |
