From 109fd94c965ad8b13ec27e17f9ba8f5fbd286975 Mon Sep 17 00:00:00 2001
From: Tim Graham <timograham@gmail.com>
Date: Fri, 9 Jun 2017 12:42:53 -0400
Subject: [PATCH] [1.11.x] Fixed typo in docs/ref/contrib/postgres/fields.txt.

Backport of 108ff788cbcd0e1f492d1494dc95e7b2165340fd from master
---
 docs/ref/contrib/postgres/fields.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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::