summaryrefslogtreecommitdiff
path: root/docs/topics/auth.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/auth.txt')
-rw-r--r--docs/topics/auth.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/auth.txt b/docs/topics/auth.txt
index 41159984f6..d261a3c90b 100644
--- a/docs/topics/auth.txt
+++ b/docs/topics/auth.txt
@@ -1889,7 +1889,7 @@ password resets. You must then provide some key implementation details:
as the identifying field::
class MyUser(AbstractBaseUser):
- identfier = models.CharField(max_length=40, unique=True, db_index=True)
+ identifier = models.CharField(max_length=40, unique=True, db_index=True)
...
USERNAME_FIELD = 'identifier'