summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/FAQ.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/FAQ.rst b/doc/FAQ.rst
index 25e85db..4230289 100644
--- a/doc/FAQ.rst
+++ b/doc/FAQ.rst
@@ -4,7 +4,7 @@ FAQ
**Q: Why don't shell pipe and redirect (| and >) work when I spawn a command?**
A: Remember that Pexpect does NOT interpret shell meta characters such as
-redirect, pipe, or wild cards (``>``, ``|``, or *). That's done by a shell not
+redirect, pipe, or wild cards (``>``, ``|``, or ``*``). That's done by a shell not
the command you are spawning. This is a common mistake. If you want to run a
command and pipe it through another command then you must also start a shell.
For example::