Opened 16 years ago

Closed 16 years ago

Last modified 15 years ago

#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';

Change History (2)

comment:1 by Malcolm Tredinnick, 16 years ago

Resolution: fixed
Status: newclosed

(In [9093]) Fixed #9234 -- Typo fix.

comment:2 by (none), 15 years ago

milestone: post-1.0

Milestone post-1.0 deleted

Note: See TracTickets for help on using tickets.
Back to Top