diff options
| author | Tom Carrick <knyght@knyg.ht> | 2016-07-14 12:52:47 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-07-14 07:52:47 -0400 |
| commit | 46e20104609bbf78500c2bde10f75f51585ddf11 (patch) | |
| tree | 9511ad0725ac7e27d1b69ca9f48df043a2f04fa5 /docs | |
| parent | 08c723fbae9d7625599fb84f602b425e82943e15 (diff) | |
Fixed typos in docs/ref/contrib/postgres/search.txt
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/postgres/search.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/contrib/postgres/search.txt b/docs/ref/contrib/postgres/search.txt index 4df4c35eef..512b3f83ae 100644 --- a/docs/ref/contrib/postgres/search.txt +++ b/docs/ref/contrib/postgres/search.txt @@ -217,7 +217,7 @@ Usage example:: >>> Author.objects.annotate( ... similarity=TrigramSimilarity('name', test), ... ).filter(similarity__gt=0.3).order_by('-similarity') - [<Author: Katy Stephens>, <Author: Stephen Keats>] + [<Author: Katy Stevens>, <Author: Stephen Keats>] ``TrigramDistance`` ------------------- @@ -238,4 +238,4 @@ Usage example:: >>> Author.objects.annotate( ... distance=TrigramDistance('name', test), ... ).filter(distance__lte=0.7).order_by('distance') - [<Author: Katy Stephens>, <Author: Stephen Keats>] + [<Author: Katy Stevens>, <Author: Stephen Keats>] |
