diff options
| author | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 09:30:01 +0300 |
|---|---|---|
| committer | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 09:30:01 +0300 |
| commit | 4882cacab6bcaf90ac496fc8878987598e7665c1 (patch) | |
| tree | 6dab1cbde4725b432bb3fd06e329d003c6a83376 /Doc/library | |
| parent | 52a3b74900db90dfbc5d6ce5145bce02d172b1b1 (diff) | |
| download | cpython-git-4882cacab6bcaf90ac496fc8878987598e7665c1.tar.gz | |
Issue #23943: Fix typos. Patch by Piotr Kasprzyk.
Diffstat (limited to 'Doc/library')
| -rw-r--r-- | Doc/library/email.contentmanager.rst | 2 | ||||
| -rw-r--r-- | Doc/library/threading.rst | 2 | ||||
| -rw-r--r-- | Doc/library/wsgiref.rst | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/email.contentmanager.rst b/Doc/library/email.contentmanager.rst index 8f33a146dd..f53d34b34c 100644 --- a/Doc/library/email.contentmanager.rst +++ b/Doc/library/email.contentmanager.rst @@ -425,7 +425,7 @@ Currently the email package provides only one concrete content manager, *cid* as its value. If *params* is specified, iterate its ``items`` method and use the - resulting ``(key, value)`` pairs to set additional paramters on the + resulting ``(key, value)`` pairs to set additional parameters on the :mailheader:`Content-Type` header. If *headers* is specified and is a list of strings of the form diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index f59ffe582f..0133a8f5e7 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -874,7 +874,7 @@ This class provides a simple synchronization primitive for use by a fixed number of threads that need to wait for each other. Each of the threads tries to pass the barrier by calling the :meth:`~Barrier.wait` method and will block until all of the threads have made the call. At this points, the threads are released -simultanously. +simultaneously. The barrier can be reused any number of times for the same number of threads. diff --git a/Doc/library/wsgiref.rst b/Doc/library/wsgiref.rst index 1cef2e9464..a9e19dad98 100644 --- a/Doc/library/wsgiref.rst +++ b/Doc/library/wsgiref.rst @@ -754,7 +754,7 @@ This is a working "Hello World" WSGI application:: # object that accepts two arguments. For that purpose, we're going to # use a function (note that you're not limited to a function, you can # use a class for example). The first argument passed to the function - # is a dictionary containing CGI-style envrironment variables and the + # is a dictionary containing CGI-style environment variables and the # second variable is the callable object (see PEP 333). def hello_world_app(environ, start_response): status = '200 OK' # HTTP Status |
