summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Quast <contact@jeffquast.com>2015-09-20 14:32:25 -0700
committerJeff Quast <contact@jeffquast.com>2015-09-20 14:32:25 -0700
commit34631ef9dd9bb89ab26729abdafc04d89ddc9765 (patch)
treea4b9386b178e3b3bb3bd4cf224eedf7dc61c3fab
parent5978c789e3d6177ddcabd73557bcf6668d619a88 (diff)
downloadpexpect-34631ef9dd9bb89ab26729abdafc04d89ddc9765.tar.gz
remove 'a' from phrase 'ignore a timeout'
-rw-r--r--doc/overview.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/overview.rst b/doc/overview.rst
index b026b2f..c5bcb05 100644
--- a/doc/overview.rst
+++ b/doc/overview.rst
@@ -234,7 +234,7 @@ If you wish to read up to the end of the child's output without generating an
The :meth:`~pexpect.spawn.expect` and :meth:`~pexpect.spawn.read` methods will
also timeout if the child does not generate any output for a given amount of
time. If this happens they will raise a :class:`~pexpect.TIMEOUT` exception.
-You can have these methods ignore a timeout and block indefinitely by passing
+You can have these methods ignore timeout and block indefinitely by passing
``None`` for the timeout parameter::
child.expect(pexpect.EOF, timeout=None)