]> granicus.if.org Git - python/commitdiff
Spelling corrections. Submitted to python-dev by python@mrabarnett.plus.com
authorBrian Curtin <brian@python.org>
Sun, 9 Feb 2014 00:36:14 +0000 (18:36 -0600)
committerBrian Curtin <brian@python.org>
Sun, 9 Feb 2014 00:36:14 +0000 (18:36 -0600)
Doc/library/asyncio-protocol.rst
Doc/library/asyncio-subprocess.rst
Doc/library/asyncio-task.rst
Doc/library/asyncio.rst

index 5fcce940e460aa61214e2f03fbf15122650c9231..dabe7d8f17bf3f99bece107d9ee8eab2c3bb6d72 100644 (file)
@@ -194,7 +194,7 @@ BaseSubprocessTransport
 
    .. method:: get_pipe_transport(fd)
 
-      Return the transport for the communication pipe correspondong to the
+      Return the transport for the communication pipe corresponding to the
       integer file descriptor *fd*.  The return value can be a readable or
       writable streaming transport, depending on the *fd*.  If *fd* doesn't
       correspond to a pipe belonging to this transport, :const:`None` is
index 3d176f100dff1a328c258acf6dfe378cf6e60d74..a2c46dc372a6339cfa378684544e6434b4316e78 100644 (file)
@@ -3,8 +3,8 @@
 Subprocess
 ==========
 
-Create a subproces
-------------------
+Create a subprocess
+-------------------
 
 .. function:: create_subprocess_shell(cmd, stdin=None, stdout=None, stderr=None, loop=None, limit=None, \*\*kwds)
 
@@ -116,7 +116,7 @@ Process
       Kills the child. On Posix OSs the function sends :py:data:`SIGKILL` to
       the child.  On Windows :meth:`kill` is an alias for :meth:`terminate`.
 
-   .. method:: send_signal(signale)
+   .. method:: send_signal(signal)
 
       Sends the signal *signal* to the child process.
 
index cfad0bc22bb7e13a80974ab6c74b49e3122cb4e5..4b2753a85b0aa2e10e40b13993ba06ec25814cbc 100644 (file)
@@ -111,7 +111,7 @@ Example chaining coroutines::
     loop.close()
 
 ``compute()`` is chained to ``print_sum()``: ``print_sum()`` coroutine waits
-until ``compute()`` is completed before returing its result.
+until ``compute()`` is completed before returning its result.
 
 Sequence diagram of the example:
 
@@ -315,7 +315,7 @@ Task
 
       The frames are always ordered from oldest to newest.
 
-      The optional limit gives the maximum nummber of frames to return; by
+      The optional limit gives the maximum number of frames to return; by
       default all available frames are returned.  Its meaning differs depending
       on whether a stack or a traceback is returned: the newest frames of a
       stack are returned, but the oldest frames of a traceback are returned.
index 542f476d6a3157ed3199da1e131763c7ecebe370..e6ea89b2329897ce425d98222e0af6060b9c3a88 100644 (file)
@@ -24,7 +24,7 @@ Here is a more detailed list of the package contents:
 * concrete support for TCP, UDP, SSL, subprocess pipes, delayed calls, and
   others (some may be system-dependent);
 
-* a :class:`Future` class that mimicks the one in the :mod:`concurrent.futures`
+* a :class:`Future` class that mimics the one in the :mod:`concurrent.futures`
   module, but adapted for use with the event loop;
 
 * coroutines and tasks based on ``yield from`` (:PEP:`380`), to help write