summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarc Tamlyn <marc.tamlyn@gmail.com>2014-11-04 21:08:32 +0000
committerMarc Tamlyn <marc.tamlyn@gmail.com>2014-11-04 21:08:32 +0000
commit83daf53636da676bc3a32b957168e9205714198e (patch)
treede058fdc020914e1367917c6e711f12f6062542c /docs
parente645b79ef5e5238c418df8f4ab5d52eb7bbc78e7 (diff)
Fix minor typo in documentation.
Diffstat (limited to 'docs')
-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 3fba239e74..1cdd21a59b 100644
--- a/docs/ref/contrib/postgres/fields.txt
+++ b/docs/ref/contrib/postgres/fields.txt
@@ -289,7 +289,7 @@ To query based on a given key, you simply use that key as the lookup name::
You can chain other lookups after key lookups::
>>> Dog.objects.filter(data__breed__contains='l')
- [<Dog: Rufus>, Dog: Meg>]
+ [<Dog: Rufus>, <Dog: Meg>]
If the key you wish to query by clashes with the name of another lookup, you
need to use the :lookup:`hstorefield.contains` lookup instead.