summaryrefslogtreecommitdiff
path: root/docs/lib/passlib.context.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/lib/passlib.context.rst')
-rw-r--r--docs/lib/passlib.context.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/lib/passlib.context.rst b/docs/lib/passlib.context.rst
index 185b183..fad4b1f 100644
--- a/docs/lib/passlib.context.rst
+++ b/docs/lib/passlib.context.rst
@@ -102,7 +102,7 @@ Options which directly affect the behavior of the CryptContext instance:
This option controls which of the configured
schemes will be used as the default when encrypting
new hashes. This parameter is optional; if omitted,
- the first algorithm in ``schemes`` will be used.
+ the first non-deprecated algorithm in ``schemes`` will be used.
You can use the :meth:`~CryptContext.default_scheme` method
to retreive the name of the current default scheme.
As an example, the following demonstrates the effect
@@ -143,7 +143,7 @@ Options which directly affect the behavior of the CryptContext instance:
This may also contain a single special value,
``["auto"]``, which will configure the CryptContext instance
- to deprecate *all* supported schemes except for the default.
+ to deprecate *all* supported schemes except for the default scheme.
.. seealso:: :ref:`context-migration-example` in the tutorial