summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjquast <contact@jeffquast.com>2013-10-27 12:45:03 -0700
committerjquast <contact@jeffquast.com>2013-10-27 12:45:03 -0700
commit1f46dace74eceda3a0e209b0bd646c1dc2d914db (patch)
tree2b48ee08af11d88323435675bc358d797217e0fe
parent4361c2370e1568e436bde1763775a3e55eac6914 (diff)
downloadpexpect-1f46dace74eceda3a0e209b0bd646c1dc2d914db.tar.gz
escape the `*', rendered to html as a bad anchor
-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::