Opened 10 years ago

Closed 10 years ago

#22585 closed Uncategorized (fixed)

Minor typo on customizing authentication page in docs

Reported by: matt@… Owned by: nobody
Component: Documentation Version: 1.6
Severity: Normal Keywords: typo
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

On https://docs.djangoproject.com/en/1.6/topics/auth/customizing/ in the description of class models.AbstractBaseUser, under set_password(raw_password) the last line currently reads:
In Django 1.4 and 1.5, a blank string was unintentionally stored as an unsable password as well.

"Unusable" is misspelled as "unsable" so it should read:
In Django 1.4 and 1.5, a blank string was unintentionally stored as an unusable password as well.

Change History (1)

comment:1 by Tim Graham <timograham@…>, 10 years ago

Resolution: fixed
Status: newclosed

In f939e25b593f2dac7f3ade86c2c4edb3b03fe51f:

[1.6.x] Fixed #22585 -- Fixed typo in topics/auth/customizing.txt.

Thanks matt at mattwoodward.com for the report.

Note: See TracTickets for help on using tickets.
Back to Top