]> granicus.if.org Git - python/commitdiff
Fix typos in documentation
authorMartin Panter <vadmium+py@gmail.com>
Sun, 20 Nov 2016 08:37:21 +0000 (08:37 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Sun, 20 Nov 2016 08:37:21 +0000 (08:37 +0000)
Doc/library/email.message.rst
Misc/NEWS

index 95136d2b84aa85bb5a45065e8c8e09fd26653578..32852e706986b48cf60fb790efdd7f447ed463ca 100644 (file)
@@ -275,7 +275,7 @@ message objects.
       only the key will be added.
 
       If the value contains non-ASCII characters, the charset and language may
-      be explicitly controlled by specifing the value as a three tuple in the
+      be explicitly controlled by specifying the value as a three tuple in the
       format ``(CHARSET, LANGUAGE, VALUE)``, where ``CHARSET`` is a string
       naming the charset to be used to encode the value, ``LANGUAGE`` can
       usually be set to ``None`` or the empty string (see :rfc:`2231` for other
index 6ea37bb2c2aa2c6fd3169a907ac2469f5edafd31..e9d2f7d85a8618d94107562a01705a63143a334d 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -366,7 +366,7 @@ Library
   if pass invalid string-like object as a name.  Patch by Xiang Zhang.
 
 - Issue #18844: random.choices() now has k as a keyword-only argument
-  to improve the readability of common cases and the come into line
+  to improve the readability of common cases and come into line
   with the signature used in other languages.
 
 - Issue #18893: Fix invalid exception handling in Lib/ctypes/macholib/dyld.py.