Fix grammar in secrets module documentation (GH-22467)
https://github.com/python/cpython/commit/63298930fb531ba2bb4f23bc3b915dbf1e1... commit: 63298930fb531ba2bb4f23bc3b915dbf1e17e9e1 branch: master author: Max Smolens <msmolens@users.noreply.github.com> committer: GitHub <noreply@github.com> date: 2020-09-30T15:05:51-07:00 summary: Fix grammar in secrets module documentation (GH-22467)
From `In particularly,` to `In particular,`
files: M Doc/library/secrets.rst diff --git a/Doc/library/secrets.rst b/Doc/library/secrets.rst index bc4766da2785b..afa8e2d385fa4 100644 --- a/Doc/library/secrets.rst +++ b/Doc/library/secrets.rst @@ -21,7 +21,7 @@ The :mod:`secrets` module is used for generating cryptographically strong random numbers suitable for managing data such as passwords, account authentication, security tokens, and related secrets. -In particularly, :mod:`secrets` should be used in preference to the +In particular, :mod:`secrets` should be used in preference to the default pseudo-random number generator in the :mod:`random` module, which is designed for modelling and simulation, not security or cryptography.
participants (1)
-
Max Smolens