diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-09-30 22:50:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-30 22:50:07 (GMT) |
commit | 4c2e299d80c53591f05de2669c0edeaf8acd8544 (patch) | |
tree | d7fcce8c89b7a843922b1a751f54e0b4dbb8040f /Doc | |
parent | d50a0700265536a20bcce3fb108c954746d97625 (diff) | |
download | cpython-4c2e299d80c53591f05de2669c0edeaf8acd8544.zip cpython-4c2e299d80c53591f05de2669c0edeaf8acd8544.tar.gz cpython-4c2e299d80c53591f05de2669c0edeaf8acd8544.tar.bz2 |
Fix grammar in secrets module documentation (GH-22467)
From `In particularly,` to `In particular,`
(cherry picked from commit 63298930fb531ba2bb4f23bc3b915dbf1e17e9e1)
Co-authored-by: Max Smolens <msmolens@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/secrets.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/secrets.rst b/Doc/library/secrets.rst index bc4766d..afa8e2d 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. |