diff options
author | Georg Brandl <georg@python.org> | 2009-05-30 07:26:04 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-05-30 07:26:04 (GMT) |
commit | ccbb47be5e7686bcda102dacd2d68cbfa698c3b5 (patch) | |
tree | 6e3d7866f52194246051551546297021fea17b9e | |
parent | ecf3c624405ed858344d1df8814cd5dc58f1834c (diff) | |
download | cpython-ccbb47be5e7686bcda102dacd2d68cbfa698c3b5.zip cpython-ccbb47be5e7686bcda102dacd2d68cbfa698c3b5.tar.gz cpython-ccbb47be5e7686bcda102dacd2d68cbfa698c3b5.tar.bz2 |
#6146: fix markup bug.
-rw-r--r-- | Doc/library/rlcompleter.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/rlcompleter.rst b/Doc/library/rlcompleter.rst index 50f1afd..85a9d79 100644 --- a/Doc/library/rlcompleter.rst +++ b/Doc/library/rlcompleter.rst @@ -52,7 +52,7 @@ Completer objects have the following method: .. method:: Completer.complete(text, state) - Return the *state*th completion for *text*. + Return the *state*\ th completion for *text*. If called for *text* that doesn't include a period character (``'.'``), it will complete from names currently defined in :mod:`__main__`, :mod:`__builtin__` and |