summaryrefslogtreecommitdiff
path: root/doc/overview.rst
diff options
context:
space:
mode:
authorThomas Kluyver <thomas@kluyver.me.uk>2020-05-16 19:24:44 +0100
committerGitHub <noreply@github.com>2020-05-16 19:24:44 +0100
commit02c38338b4ade8b0b0e85be613bc2b9dbfe68a7b (patch)
treefa784fb7ea4c22663b10be0c824e8ff45be38ad7 /doc/overview.rst
parent5da50dccbbdb10094837fe56399c5e885867c184 (diff)
parent787e78310dcde34be28fc2c1f5f2b6e69c66a45f (diff)
downloadpexpect-git-master.tar.gz
Merge pull request #643 from scop/spellingHEADmaster
Spelling fixes
Diffstat (limited to 'doc/overview.rst')
-rw-r--r--doc/overview.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/overview.rst b/doc/overview.rst
index fcfe195..8e47ed0 100644
--- a/doc/overview.rst
+++ b/doc/overview.rst
@@ -162,7 +162,7 @@ to perform a regular expression match on a stream. Regular expressions need to
look ahead. With a stream it is hard to look ahead because the process
generating the stream may not be finished. There is no way to know if the
process has paused momentarily or is finished and waiting for you. Pexpect must
-implicitly always do a NON greedy match (minimal) at the end of a input.
+implicitly always do a NON greedy match (minimal) at the end of input.
Pexpect compiles all regular expressions with the :data:`re.DOTALL` flag.
With the :data:`~re.DOTALL` flag, a ``"."`` will match a newline.