]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix grammar in secrets module documentation (GH-22467)
authorMax Smolens <msmolens@users.noreply.github.com>
Wed, 30 Sep 2020 22:05:51 +0000 (18:05 -0400)
committerGitHub <noreply@github.com>
Wed, 30 Sep 2020 22:05:51 +0000 (15:05 -0700)
From `In particularly,` to `In particular,`

Doc/library/secrets.rst

index bc4766da2785b36dfe8b0621abb5389d3138f197..afa8e2d385fa46581976c123f32f80efb3bf0da1 100644 (file)
@@ -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.