diff options
| author | Mathieu Richardoz <metamatik@gmail.com> | 2016-07-07 13:05:49 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-07-07 07:05:49 -0400 |
| commit | d58a27c3491f6e98ca4cb4fbdb8d867a21ce2e25 (patch) | |
| tree | 9103d449e15c76c97651782310af6cc807bb116b /docs | |
| parent | 48a570164e99a9e25b94143396d0cfa307244209 (diff) | |
Fixed a typo in docs/ref/contrib/postgres/search.txt.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/postgres/search.txt | 2 |
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'))) |
