diff options
| author | Claude Paroz <claude@2xlibre.net> | 2012-10-26 10:23:33 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2012-10-26 10:23:33 +0200 |
| commit | 90c76564669fa03caefcf4318ffdf9ba8fa4d40b (patch) | |
| tree | 2b763b340008457d2f3d6eb493a616f3c01eb98d /docs/topics/auth.txt | |
| parent | fabe9c9e5f0a437b5389faaf469ce53091abd3cf (diff) | |
Fixed #19191 -- Corrected a typo in CustomUser docs
Thanks spleeyah for the report.
Diffstat (limited to 'docs/topics/auth.txt')
| -rw-r--r-- | docs/topics/auth.txt | 2 |
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' |
