From 346eb328617ada9c65f5c9ded2e2914f3dcc04c9 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Fri, 6 Oct 2017 12:44:44 -0700 Subject: [PATCH] Made SearchQuery examples less sterotyped. --- docs/ref/contrib/postgres/search.txt | 6 +++--- 1 file 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.