mirror of
https://github.com/Hopiu/django.git
synced 2026-05-05 06:04:45 +00:00
Fix minor typo in documentation.
This commit is contained in:
parent
e645b79ef5
commit
83daf53636
1 changed files with 1 additions and 1 deletions
|
|
@ -289,7 +289,7 @@ To query based on a given key, you simply use that key as the lookup name::
|
|||
You can chain other lookups after key lookups::
|
||||
|
||||
>>> Dog.objects.filter(data__breed__contains='l')
|
||||
[<Dog: Rufus>, Dog: Meg>]
|
||||
[<Dog: Rufus>, <Dog: Meg>]
|
||||
|
||||
If the key you wish to query by clashes with the name of another lookup, you
|
||||
need to use the :lookup:`hstorefield.contains` lookup instead.
|
||||
|
|
|
|||
Loading…
Reference in a new issue