From 5238af325729c4a3068f7e8e18edc9928972fab3 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sat, 14 May 2016 18:58:09 -0400 Subject: [PATCH] Used 'classmethod' annotation in docs/topics/auth/customizing.txt --- docs/topics/auth/customizing.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt index 68ca0e7f55b..9120c6a1f04 100644 --- a/docs/topics/auth/customizing.txt +++ b/docs/topics/auth/customizing.txt @@ -721,10 +721,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)