From 5eaa60531460249799875ec913b6eb978212e11d Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Wed, 9 Jul 2014 17:33:58 +0100 Subject: [PATCH] Fixed search example in docs --- docs/wagtailsearch/for_python_developers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/wagtailsearch/for_python_developers.rst b/docs/wagtailsearch/for_python_developers.rst index 506649976..be389e500 100644 --- a/docs/wagtailsearch/for_python_developers.rst +++ b/docs/wagtailsearch/for_python_developers.rst @@ -24,7 +24,7 @@ All methods of ``PageQuerySet`` are supported by wagtailsearch: .. code-block:: python # Search all live EventPages that are under the events index - >>> EventPage.objects.live().descendant_of(events_index).search("Hello") + >>> EventPage.objects.live().descendant_of(events_index).search("Event") [, ]