summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-05-14 18:58:09 -0400
committerTim Graham <timograham@gmail.com>2016-05-14 18:59:33 -0400
commit936a7df6520941e264f741766281fc00e4709a2d (patch)
treeb0d588b0c7a4a305bcaf8a74720c96c220c050a8 /docs
parent04002bfc2f66ccdded3b23a75b0d28573a9dba26 (diff)
[1.9.x] Used 'classmethod' annotation in docs/topics/auth/customizing.txt
Backport of 5238af325729c4a3068f7e8e18edc9928972fab3 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/auth/customizing.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt
index ce6c7502b8..defd3c77b4 100644
--- a/docs/topics/auth/customizing.txt
+++ b/docs/topics/auth/customizing.txt
@@ -708,10 +708,10 @@ utility methods:
.. class:: models.BaseUserManager
- .. method:: models.BaseUserManager.normalize_email(email)
+ .. classmethod:: models.BaseUserManager.normalize_email(email)
- A ``classmethod`` that normalizes email addresses by lowercasing
- the domain portion of the email address.
+ Normalizes email addresses by lowercasing the domain portion of the
+ email address.
.. method:: models.BaseUserManager.get_by_natural_key(username)