summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2000-07-12 02:56:15 (GMT)
committerEric S. Raymond <esr@thyrsus.com>2000-07-12 02:56:15 (GMT)
commit7ae3a5e79d8c2ebfc52245a72a39b672e3c70d4b (patch)
tree3029da3b12229df9540192643a0925be52f26063
parentc72c3bed779d9176096abf487ca855aa2871edd8 (diff)
downloadcpython-7ae3a5e79d8c2ebfc52245a72a39b672e3c70d4b.zip
cpython-7ae3a5e79d8c2ebfc52245a72a39b672e3c70d4b.tar.gz
cpython-7ae3a5e79d8c2ebfc52245a72a39b672e3c70d4b.tar.bz2
Resynchronize the TeX docs with (a) the module docstring, and (b) my recent
fix to the code to make it behave like the module docstring.
-rw-r--r--Doc/lib/libcmd.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libcmd.tex b/Doc/lib/libcmd.tex
index 153d7a3..83e5ff8 100644
--- a/Doc/lib/libcmd.tex
+++ b/Doc/lib/libcmd.tex
@@ -43,9 +43,9 @@ An end-of-file on input is passed back as the string \code{'EOF'}.
An interpreter instance will recognize a command name \samp{foo} if
and only if it has a method \method{do_foo()}. As a special case,
-a line containing only the character \character{?} is dispatched to
+a line beginning with the character \character{?} is dispatched to
the method \method{do_help()}. As another special case, a line
-containing only the character \character{!} is dispatched to the
+beginning with the character \character{!} is dispatched to the
method \method{do_shell} (if such a method is defined).
All subclasses of \class{Cmd} inherit a predefined \method{do_help}.