diff options
author | Zach Thompson <zthompson47@users.noreply.github.com> | 2019-09-10 13:40:14 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-09-10 13:40:14 (GMT) |
commit | c2f056be82a433ff1fe756c1a463c91633c230ab (patch) | |
tree | 7f27df1a08431783f91ce1cabf2125598fea549c /Doc/library/ssl.rst | |
parent | a511c7a4961a684db1f8d0ed438822d87d7d3dcf (diff) | |
download | cpython-c2f056be82a433ff1fe756c1a463c91633c230ab.zip cpython-c2f056be82a433ff1fe756c1a463c91633c230ab.tar.gz cpython-c2f056be82a433ff1fe756c1a463c91633c230ab.tar.bz2 |
Fix typo in ssl.RAND_bytes documentation (GH-14791)
It looks like "cryptographically strong" is the preferred phrase from the surrounding documentation.
Automerge-Triggered-By: @tiran
Diffstat (limited to 'Doc/library/ssl.rst')
-rw-r--r-- | Doc/library/ssl.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 279af57..2db48ae 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -293,7 +293,7 @@ Random generation Read the Wikipedia article, `Cryptographically secure pseudorandom number generator (CSPRNG) <https://en.wikipedia.org/wiki/Cryptographically_secure_pseudorandom_number_generator>`_, - to get the requirements of a cryptographically generator. + to get the requirements of a cryptographically strong generator. .. versionadded:: 3.3 |