diff options
| author | adamth <adam@adamth.com> | 2018-04-23 21:37:26 +1000 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-04-23 07:37:26 -0400 |
| commit | acf9d6404545c58522c3011348d071d6bfca8f69 (patch) | |
| tree | 6e376fb450f1e38259880791e29deb27fb4a8bab /docs | |
| parent | b33f10d8cc5037f49d5f9c462c510f0fcf11bcf5 (diff) | |
Fixed typos in docs/topics/auth/passwords.txt.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/auth/passwords.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/auth/passwords.txt b/docs/topics/auth/passwords.txt index 5d2c04b364..7b72c4292d 100644 --- a/docs/topics/auth/passwords.txt +++ b/docs/topics/auth/passwords.txt @@ -385,7 +385,7 @@ Manually managing a user's password .. module:: django.contrib.auth.hashers The :mod:`django.contrib.auth.hashers` module provides a set of functions -to create and validate hashed password. You can use them independently +to create and validate hashed passwords. You can use them independently from the ``User`` model. .. function:: check_password(password, encoded) @@ -404,8 +404,8 @@ from the ``User`` model. provide a salt and a hashing algorithm to use, if you don't want to use the defaults (first entry of ``PASSWORD_HASHERS`` setting). See :ref:`auth-included-hashers` for the algorithm name of each hasher. If the - password argument is ``None``, an unusable password is returned (a one that - will be never accepted by :func:`check_password`). + password argument is ``None``, an unusable password is returned (one that + will never be accepted by :func:`check_password`). .. function:: is_password_usable(encoded_password) |
