#9234: Spelling mistake in "Making queries"
-----------------------------+----------------------------------------------
Reporter: OneElitePenguin | Owner: nobody
Status: new | Milestone: post-1.0
Component: Documentation | Version: 1.0
Keywords: spelling typo | Stage: Unreviewed
Has_patch: 0 |
-----------------------------+----------------------------------------------
Spelling mistake in
[http://docs.djangoproject.com/en/dev/topics/db/queries/#field-lookups
Field Lookups] under
[http://docs.djangoproject.com/en/dev/topics/db/queries/ 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';
}}}
[[BR]]
The last line should be:
{{{
SELECT ... WHERE headline = 'Man bites dog';
}}}
--
Ticket URL: <http://code.djangoproject.com/ticket/9234>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---