#12383 closed (fixed)
Typo in user documentation s/Permisson/Permission/
| Reported by: | davedash | Owned by: | nobody |
|---|---|---|---|
| Component: | Documentation | Version: | dev |
| Severity: | Keywords: | typo | |
| 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://docs.djangoproject.com/en/dev/topics/auth/ under Installation:
"Put 'django.contrib.auth' and 'django.contrib.contenttypes' in your INSTALLED_APPS setting. (The Permisson model in django.contrib.auth depends on django.contrib.contenttypes.)"
Should be:
"Put 'django.contrib.auth' and 'django.contrib.contenttypes' in your INSTALLED_APPS setting. (The Permission model in django.contrib.auth depends on django.contrib.contenttypes.)"
Not sure on the version of the docs, but I'm assuming SVN.
Attachments (1)
Change History (4)
by , 16 years ago
| Attachment: | 12383.diff added |
|---|
comment:1 by , 16 years ago
| Has patch: | set |
|---|---|
| Keywords: | typo added |
| Triage Stage: | Unreviewed → Ready for checkin |
comment:2 by , 16 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
comment:3 by , 16 years ago
Note:
See TracTickets
for help on using tickets.
(In [12054]) Fixed #12383 - Typo fix for authentication documentation.