Opened 17 years ago

Closed 17 years ago

#5346 closed (fixed)

Typos in the model-api documentation

Reported by: David Paccoud <dpaccoud@…> Owned by: Jacob
Component: Documentation Version: dev
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

in http://www.djangoproject.com/documentation/model-api/#filepathfield

``"foo.*\.txt^"``, which will match a file called ``foo23.txt``

should read:
``"foo.*\.txt$"``, which will match a file called ``foo23.txt``

in http://www.djangoproject.com/documentation/model-api/#str

before putting ``_str__`` methods everywhere

should read:
before putting ``__str__`` methods everywhere

Attachments (1)

doc-typo.diff (1.1 KB ) - added by David Paccoud <dpaccoud@…> 17 years ago.

Download all attachments as: .zip

Change History (3)

by David Paccoud <dpaccoud@…>, 17 years ago

Attachment: doc-typo.diff added

comment:1 by Simon G. <dev@…>, 17 years ago

Summary: Typo in the model-api documentationTypos in the model-api documentation
Triage Stage: UnreviewedReady for checkin

Well spotted

comment:2 by Gary Wilson, 17 years ago

Resolution: fixed
Status: newclosed

(In [6069]) Fixed #5346 -- Fixed a couple typos in the model-api docs. Thanks, David Paccoud.

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