summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-09-30 15:49:52 -0700
committerGitHub <noreply@github.com>2020-09-30 15:49:52 -0700
commit8fc828ec4e867c111cef137a2daeea6c3d5db2c7 (patch)
treefb236f0afd6d444dca60b5ed327d9b61a3572719
parent868c8e41eb1d7dc032679ae06e62c0d60edd7725 (diff)
downloadcpython-git-8fc828ec4e867c111cef137a2daeea6c3d5db2c7.tar.gz
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>
-rw-r--r--Doc/library/secrets.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/secrets.rst b/Doc/library/secrets.rst
index bc4766da27..afa8e2d385 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.