summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-12-01 16:30:14 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-12-01 16:30:14 (GMT)
commit83000a490a36f4c3c579151ff09eeb4875d0d4cd (patch)
tree4685eb31eff461a6c77ab302bcfa689aff7e3f7b /Doc
parent2205da43a6bb68b641d97fa7832b71c8a57efb77 (diff)
parent56a6d855e2b93b0eb39a3b291ef43b2d03c5e986 (diff)
downloadcpython-83000a490a36f4c3c579151ff09eeb4875d0d4cd.zip
cpython-83000a490a36f4c3c579151ff09eeb4875d0d4cd.tar.gz
cpython-83000a490a36f4c3c579151ff09eeb4875d0d4cd.tar.bz2
Removed duplicated words in in comments and docs.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/base64.rst2
-rw-r--r--Doc/whatsnew/3.3.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/base64.rst b/Doc/library/base64.rst
index 02b4d7b..3d23dfc 100644
--- a/Doc/library/base64.rst
+++ b/Doc/library/base64.rst
@@ -13,7 +13,7 @@
This module provides functions for encoding binary data to printable
ASCII characters and decoding such encodings back to binary data.
It provides encoding and decoding functions for the encodings specified in
-in :rfc:`3548`, which defines the Base16, Base32, and Base64 algorithms,
+:rfc:`3548`, which defines the Base16, Base32, and Base64 algorithms,
and for the de-facto standard Ascii85 and Base85 encodings.
The :rfc:`3548` encodings are suitable for encoding binary data so that it can
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index 7c412ca..f8c3ca5 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -1540,7 +1540,7 @@ multiprocessing connections.
to override the default behavior of inheriting the ``daemon`` flag from
the parent process (:issue:`6064`).
-New attribute attribute :data:`multiprocessing.Process.sentinel` allows a
+New attribute :data:`multiprocessing.Process.sentinel` allows a
program to wait on multiple :class:`~multiprocessing.Process` objects at one
time using the appropriate OS primitives (for example, :mod:`select` on
posix systems).