]> granicus.if.org Git - python/commitdiff
Issues #21948 and #16040: Fix typos.
authorBerker Peksag <berker.peksag@gmail.com>
Wed, 9 Jul 2014 17:15:28 +0000 (20:15 +0300)
committerBerker Peksag <berker.peksag@gmail.com>
Wed, 9 Jul 2014 17:15:28 +0000 (20:15 +0300)
Doc/library/hmac.rst
Lib/nntplib.py

index 4858235107ba2951da3079950211bb2c90a3b4f8..b2e377f5eba5bff16649082cba28a21e7dc20b2c 100644 (file)
@@ -25,7 +25,7 @@ This module implements the HMAC algorithm as described by :rfc:`2104`.
    .. versionchanged:: 3.4
       Parameter *key* can be a bytes or bytearray object.
       Parameter *msg* can be of any type supported by :mod:`hashlib`.
-      Paramter *digestmod* can be the name of a hash algorithm.
+      Parameter *digestmod* can be the name of a hash algorithm.
 
    .. deprecated:: 3.4
       MD5 as implicit default digest for *digestmod* is deprecated.
index e2c6579b673cc6927a8a35112c1618146b27c937..4ded78a9e879dfc427d1556301a65bbdbcb85325 100644 (file)
@@ -86,7 +86,7 @@ __all__ = ["NNTP",
            ]
 
 # maximal line length when calling readline(). This is to prevent
-# reading arbitrary lenght lines. RFC 3977 limits NNTP line length to
+# reading arbitrary length lines. RFC 3977 limits NNTP line length to
 # 512 characters, including CRLF. We have selected 2048 just to be on
 # the safe side.
 _MAXLINE = 2048