summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMathieu Richardoz <metamatik@gmail.com>2016-07-07 13:05:49 +0200
committerTim Graham <timograham@gmail.com>2016-07-07 07:06:17 -0400
commitf1af076fbabf932dde337f09ad95369aab32d404 (patch)
tree2611b37174d374d999bf6552d4b20280a4471995 /docs
parent415ae960bb9f1bdae798023fdce3247d2c938eec (diff)
Fixed a typo in docs/ref/contrib/postgres/search.txt.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/postgres/search.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/postgres/search.txt b/docs/ref/contrib/postgres/search.txt
index 533c3ec504..4df4c35eef 100644
--- a/docs/ref/contrib/postgres/search.txt
+++ b/docs/ref/contrib/postgres/search.txt
@@ -128,7 +128,7 @@ a different language parsers and dictionaries as defined by the database::
The value of ``config`` could also be stored in another column::
- >>> from djanog.db.models import F
+ >>> from django.db.models import F
>>> Entry.objects.annotate(
... search=SearchVector('body_text', config=F('blog__language')),
... ).filter(search=SearchQuery('œuf', config=F('blog__language')))