From cece802dbb021f92802be74c8ff9ac87976441ff Mon Sep 17 00:00:00 2001
From: Dan Swain <dan@danswain.com>
Date: Tue, 20 Aug 2019 04:37:48 -0400
Subject: [PATCH] Corrected typo in search docs. (#11673)

---
 docs/topics/db/search.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/topics/db/search.txt b/docs/topics/db/search.txt
index c7e855d4d7..b633fec1bf 100644
--- a/docs/topics/db/search.txt
+++ b/docs/topics/db/search.txt
@@ -17,7 +17,7 @@ Standard textual queries
 ------------------------
 
 Text-based fields have a selection of simple matching operations. For example,
-you may wish to allow lookup up an author like so::
+you may wish to allow lookup of an author like so::
 
     >>> Author.objects.filter(name__contains='Terry')
     [<Author: Terry Gilliam>, <Author: Terry Jones>]