Opened 16 years ago

Closed 16 years ago

#9052 closed (fixed)

Managing Files doc typo

Reported by: KiWiB0RG Owned by: nobody
Component: Documentation Version: 1.0
Severity: Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

There's a code example that says

>>> car = Car.object.get(name="57 Chevy")

when it should be

>>> car = Car.objects.get(name="57 Chevy")

Attachments (1)

fixdocs.diff (489 bytes ) - added by KiWiB0RG 16 years ago.
files doc fix

Download all attachments as: .zip

Change History (4)

by KiWiB0RG, 16 years ago

Attachment: fixdocs.diff added

files doc fix

comment:1 by KiWiB0RG, 16 years ago

Component: UncategorizedDocumentation

comment:2 by Julien Phalip, 16 years ago

Triage Stage: UnreviewedReady for checkin

Thanks for the report.

comment:3 by Russell Keith-Magee, 16 years ago

Resolution: fixed
Status: newclosed

(In [9018]) Fixed #9052: Corrected typo in file handling docs. Thanks to KiWiB0RG for the report.

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