Opened 19 years ago

Closed 19 years ago

Last modified 18 years ago

#318 closed defect (fixed)

Missing ')' in SlugField code example

Reported by: django@… Owned by: Jacob
Component: *.djangoproject.com Version:
Severity: normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

On the Model API page, the SlugField example is:

meta.SlugField("slug", prepopulate_from=("pre_name", "name"),

But should read:

meta.SlugField("slug", prepopulate_from=("pre_name", "name")),

Change History (1)

comment:1 by Adrian Holovaty, 19 years ago

Resolution: fixed
Status: newclosed

(In [508]) Fixed #318 -- Fixed typo in docs/model-api.txt. Thanks, django@…

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