Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a1afeec

Browse files
committed
Spelling corrections. Submitted to python-dev by [email protected]
1 parent 87bf277 commit a1afeec

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

Doc/library/asyncio-protocol.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ BaseSubprocessTransport
194194

195195
.. method:: get_pipe_transport(fd)
196196

197-
Return the transport for the communication pipe correspondong to the
197+
Return the transport for the communication pipe corresponding to the
198198
integer file descriptor *fd*. The return value can be a readable or
199199
writable streaming transport, depending on the *fd*. If *fd* doesn't
200200
correspond to a pipe belonging to this transport, :const:`None` is

Doc/library/asyncio-subprocess.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Subprocess
44
==========
55

6-
Create a subproces
7-
------------------
6+
Create a subprocess
7+
-------------------
88

99
.. function:: create_subprocess_shell(cmd, stdin=None, stdout=None, stderr=None, loop=None, limit=None, \*\*kwds)
1010

@@ -116,7 +116,7 @@ Process
116116
Kills the child. On Posix OSs the function sends :py:data:`SIGKILL` to
117117
the child. On Windows :meth:`kill` is an alias for :meth:`terminate`.
118118

119-
.. method:: send_signal(signale)
119+
.. method:: send_signal(signal)
120120

121121
Sends the signal *signal* to the child process.
122122

Doc/library/asyncio-task.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Example chaining coroutines::
111111
loop.close()
112112

113113
``compute()`` is chained to ``print_sum()``: ``print_sum()`` coroutine waits
114-
until ``compute()`` is completed before returing its result.
114+
until ``compute()`` is completed before returning its result.
115115

116116
Sequence diagram of the example:
117117

@@ -315,7 +315,7 @@ Task
315315

316316
The frames are always ordered from oldest to newest.
317317

318-
The optional limit gives the maximum nummber of frames to return; by
318+
The optional limit gives the maximum number of frames to return; by
319319
default all available frames are returned. Its meaning differs depending
320320
on whether a stack or a traceback is returned: the newest frames of a
321321
stack are returned, but the oldest frames of a traceback are returned.

Doc/library/asyncio.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Here is a more detailed list of the package contents:
2424
* concrete support for TCP, UDP, SSL, subprocess pipes, delayed calls, and
2525
others (some may be system-dependent);
2626

27-
* a :class:`Future` class that mimicks the one in the :mod:`concurrent.futures`
27+
* a :class:`Future` class that mimics the one in the :mod:`concurrent.futures`
2828
module, but adapted for use with the event loop;
2929

3030
* coroutines and tasks based on ``yield from`` (:PEP:`380`), to help write

0 commit comments

Comments
 (0)