#318 closed defect (fixed)
Missing ')' in SlugField code example
| Reported by: | 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")),
Note:
See TracTickets
for help on using tickets.
(In [508]) Fixed #318 -- Fixed typo in docs/model-api.txt. Thanks, django@…