From 90c76564669fa03caefcf4318ffdf9ba8fa4d40b Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Fri, 26 Oct 2012 10:23:33 +0200 Subject: [PATCH] Fixed #19191 -- Corrected a typo in CustomUser docs Thanks spleeyah for the report. --- docs/topics/auth.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'