#9234 closed (fixed)
Spelling mistake in "Making queries"
Reported by: | Xiao Di Guan | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.0 |
Severity: | Keywords: | spelling typo | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Spelling mistake in Field Lookups under Making Queries:
exact An "exact" match. For example: >>> Entry.objects.get(headline__exact="Man bites dog") Would generate SQL along these lines: SELECT ... WHERE headline = 'Man bits dog';
The last line should be:
SELECT ... WHERE headline = 'Man bites dog';
Note:
See TracTickets
for help on using tickets.
(In [9093]) Fixed #9234 -- Typo fix.