summaryrefslogtreecommitdiff
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-06-15 22:26:34 -0700
committerGitHub <noreply@github.com>2018-06-15 22:26:34 -0700
commit416e488415cacec98778da11da401c1b94d92c10 (patch)
tree6cbb41eb8561685b210fbf9d44dbc0c493406ffe /Doc/whatsnew
parent380a2b09e8c78b1222f9295e82e7ef34a0e70d99 (diff)
downloadcpython-git-416e488415cacec98778da11da401c1b94d92c10.tar.gz
bpo-33859: Fix spelling mistakes in docs. (GH-7691)
(cherry picked from commit c151f7846d6d900c22edaaa77f5f7771b529099e) Co-authored-by: Xtreak <tirkarthi@users.noreply.github.com>
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.3.rst2
-rw-r--r--Doc/whatsnew/3.6.rst2
-rw-r--r--Doc/whatsnew/3.7.rst2
3 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index 7e5133dbb7..0575ac9e68 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 bb32361901..1360af79d0 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -1856,7 +1856,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`.
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index f17542674c..287a027a04 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -2262,7 +2262,7 @@ Changes in the Python API
* Because :func:`shutil.rmtree` is now implemented using the :func:`os.scandir`
function, the user specified handler *onerror* is now called with the first
- argument ``os.scandir`` instead of ``os.listdir`` when listing the direcory
+ argument ``os.scandir`` instead of ``os.listdir`` when listing the directory
is failed.
* Support for nested sets and set operations in regular expressions as in