Commit 79abd052 authored by Gary Wilson Jr's avatar Gary Wilson Jr
Browse files

Fixed #6753 -- Corrected typo in authentication docs, thanks piem@piem.org and PJCrosier.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@7229 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 54d5b9ec
Loading
Loading
Loading
Loading
+12 −12
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@ objects in the same way as any other `Django model`_::
    myuser.groups.clear()
    myuser.user_permissions = [permission_list]
    myuser.user_permissions.add(permission, permission, ...)
    myuser.user_permissions.remove(permission, permission, ...]
    myuser.user_permissions.remove(permission, permission, ...)
    myuser.user_permissions.clear()

In addition to those automatic API methods, ``User`` objects have the following