summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2015-09-12 12:07:59 +0100
committerThomas Kluyver <takowl@gmail.com>2015-09-12 12:07:59 +0100
commitd7d75979bc8ac10bf3044947a944bafb166dfe7c (patch)
treea39acbdd15c3ef01a10c82cd146555142ae1b41d
parent0d9d6581f2edd389cc21f0d363708ac517258fec (diff)
downloadpexpect-git-d7d75979bc8ac10bf3044947a944bafb166dfe7c.tar.gz
Fix typo in docstring
-rw-r--r--pexpect/pty_spawn.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pexpect/pty_spawn.py b/pexpect/pty_spawn.py
index cdbb54f..380fb15 100644
--- a/pexpect/pty_spawn.py
+++ b/pexpect/pty_spawn.py
@@ -397,7 +397,7 @@ class spawn(SpawnBase):
then this will raise a TIMEOUT exception.
The timeout refers only to the amount of time to read at least one
- character. This is not effected by the 'size' parameter, so if you call
+ character. This is not affected by the 'size' parameter, so if you call
read_nonblocking(size=100, timeout=30) and only one character is
available right away then one character will be returned immediately.
It will not wait for 30 seconds for another 99 characters to come in.