Opened 17 years ago

Closed 17 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
Pull Requests:How to create a pull request

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, ...)

Change History (3)

by Pete Crosier, 17 years ago

Cleaned up "method" example section

comment:1 by Pete Crosier, 17 years ago

Triage Stage: UnreviewedAccepted

comment:2 by Gary Wilson, 17 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