Opened 16 years ago

Closed 16 years ago

#6753 closed (fixed)

minor typo in authentication

Reported by: piem@… Owned by: nobody
Component: Documentation Version: dev
Severity: Keywords:
Cc: Triage Stage: Accepted
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/authentication/#methods

part of the first code snippet reads

myuser.user_permissions.remove(permission, permission, ...]

but should read:

myuser.user_permissions.remove(permission, permission, ...)

Attachments (1)

6753.docs.authentication.diff (858 bytes ) - added by Pete Crosier 16 years ago.
Cleaned up "method" example section

Download all attachments as: .zip

Change History (3)

by Pete Crosier, 16 years ago

Cleaned up "method" example section

comment:1 by Pete Crosier, 16 years ago

Triage Stage: UnreviewedAccepted

comment:2 by Gary Wilson, 16 years ago

Resolution: fixed
Status: newclosed

(In [7229]) Fixed #6753 -- Corrected typo in authentication docs, thanks piem@… and PJCrosier.

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