[Python-checkins] [3.6] bpo-33859: Fix spelling mistakes in docs. (GH-7691). (GH-7750)

Serhiy Storchaka webhook-mailer at python.org
Sat Jun 16 02:33:22 EDT 2018


https://github.com/python/cpython/commit/c5ff553ae717c33f86d4fa984ee92de71c467f2a
commit: c5ff553ae717c33f86d4fa984ee92de71c467f2a
branch: 3.6
author: Xtreak <tirkarthi at users.noreply.github.com>
committer: Serhiy Storchaka <storchaka at gmail.com>
date: 2018-06-16T09:33:16+03:00
summary:

[3.6] bpo-33859: Fix spelling mistakes in docs. (GH-7691). (GH-7750)

(cherry picked from commit c151f7846d6d900c22edaaa77f5f7771b529099e)

Co-authored-by: Xtreak <tirkarthi at users.noreply.github.com>

files:
M Doc/library/email.rst
M Doc/library/importlib.rst
M Doc/library/xmlrpc.client.rst
M Doc/whatsnew/3.3.rst
M Doc/whatsnew/3.6.rst

diff --git a/Doc/library/email.rst b/Doc/library/email.rst
index c4187dd0098d..1033d8c130eb 100644
--- a/Doc/library/email.rst
+++ b/Doc/library/email.rst
@@ -133,7 +133,7 @@ Legacy API:
 .. seealso::
 
    Module :mod:`smtplib`
-      SMTP (Simple Mail Transport Protcol) client
+      SMTP (Simple Mail Transport Protocol) client
 
    Module :mod:`poplib`
       POP (Post Office Protocol) client
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst
index c1cd9485cc78..e41169c21576 100644
--- a/Doc/library/importlib.rst
+++ b/Doc/library/importlib.rst
@@ -243,7 +243,7 @@ ABC hierarchy::
 
    .. abstractmethod:: find_module(fullname, path=None)
 
-      An abstact method for finding a :term:`loader` for the specified
+      An abstract method for finding a :term:`loader` for the specified
       module.  Originally specified in :pep:`302`, this method was meant
       for use in :data:`sys.meta_path` and in the path-based import subsystem.
 
diff --git a/Doc/library/xmlrpc.client.rst b/Doc/library/xmlrpc.client.rst
index ed2ccaeae07a..27d92e324722 100644
--- a/Doc/library/xmlrpc.client.rst
+++ b/Doc/library/xmlrpc.client.rst
@@ -145,7 +145,7 @@ between conformable Python objects and XML on the wire.
 
    .. versionchanged:: 3.6
       Added support of type tags with prefixes (e.g. ``ex:nil``).
-      Added support of unmarsalling additional types used by Apache XML-RPC
+      Added support of unmarshalling additional types used by Apache XML-RPC
       implementation for numerics: ``i1``, ``i2``, ``i8``, ``biginteger``,
       ``float`` and ``bigdecimal``.
       See http://ws.apache.org/xmlrpc/types.html for a description.
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index b091507a19d5..80422557536e 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -1414,7 +1414,7 @@ http
 :class:`http.server.BaseHTTPRequestHandler` now buffers the headers and writes
 them all at once when :meth:`~http.server.BaseHTTPRequestHandler.end_headers` is
 called.  A new method :meth:`~http.server.BaseHTTPRequestHandler.flush_headers`
-can be used to directly manage when the accumlated headers are sent.
+can be used to directly manage when the accumulated headers are sent.
 (Contributed by Andrew Schaaf in :issue:`3709`.)
 
 :class:`http.server` now produces valid ``HTML 4.01 strict`` output.
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index 2c675a5fbb44..4d63bbe73a29 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -1855,7 +1855,7 @@ Build and C API Changes
   For more information, see :pep:`7` and :issue:`17884`.
 
 * Cross-compiling CPython with the Android NDK and the Android API level set to
-  21 (Android 5.0 Lollilop) or greater runs successfully. While Android is not
+  21 (Android 5.0 Lollipop) or greater runs successfully. While Android is not
   yet a supported platform, the Python test suite runs on the Android emulator
   with only about 16 tests failures. See the Android meta-issue :issue:`26865`.
 



More information about the Python-checkins mailing list