summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Willison <simonw@eventbrite.com>2017-10-06 12:44:44 -0700
committerTim Graham <timograham@gmail.com>2017-10-17 09:59:01 -0400
commit9a2c2b7a68eceb1fd9cdf7f672a8527cddf06b98 (patch)
tree9b524c7977f6580d32706576ec93d6c6c6c0fd76
parentc678ff91b12798e6ba7dd189ca3091cf98a2b295 (diff)
[2.0.x] Made SearchQuery examples less sterotyped.
Backport of 346eb328617ada9c65f5c9ded2e2914f3dcc04c9 from master
-rw-r--r--docs/ref/contrib/postgres/search.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/contrib/postgres/search.txt b/docs/ref/contrib/postgres/search.txt
index e3f4f7296d..317a553163 100644
--- a/docs/ref/contrib/postgres/search.txt
+++ b/docs/ref/contrib/postgres/search.txt
@@ -80,9 +80,9 @@ looks for matches for all of the resulting terms.
``SearchQuery`` terms can be combined logically to provide more flexibility::
>>> from django.contrib.postgres.search import SearchQuery
- >>> SearchQuery('potato') & SearchQuery('ireland') # potato AND ireland
- >>> SearchQuery('potato') | SearchQuery('penguin') # potato OR penguin
- >>> ~SearchQuery('sausage') # NOT sausage
+ >>> SearchQuery('meat') & SearchQuery('cheese') # AND
+ >>> SearchQuery('meat') | SearchQuery('cheese') # OR
+ >>> ~SearchQuery('meat') # NOT
See :ref:`postgresql-fts-search-configuration` for an explanation of the
``config`` parameter.