diff options
author | Georg Brandl <georg@python.org> | 2011-07-03 07:39:49 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-07-03 07:39:49 (GMT) |
commit | f069100d0daf6460e54777295bfb029453c785d5 (patch) | |
tree | 8d8c0bcc83f274a92fcb85f5f37ac18594c98c13 /Doc/library/curses.rst | |
parent | fa76ceb3c87d3fb2b63c06447eb61f740e92b4d4 (diff) | |
download | cpython-f069100d0daf6460e54777295bfb029453c785d5.zip cpython-f069100d0daf6460e54777295bfb029453c785d5.tar.gz cpython-f069100d0daf6460e54777295bfb029453c785d5.tar.bz2 |
Fix bad markup.
Diffstat (limited to 'Doc/library/curses.rst')
-rw-r--r-- | Doc/library/curses.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/curses.rst b/Doc/library/curses.rst index fb57e76..b7039de 100644 --- a/Doc/library/curses.rst +++ b/Doc/library/curses.rst @@ -566,7 +566,7 @@ The module :mod:`curses` defines the following functions: Instantiate the string *str* with the supplied parameters, where *str* should be a parameterized string obtained from the terminfo database. E.g. - ``tparm(tigetstr("cup"), 5, 3)`` could result in x``'\033[6;4H'``, the exact + ``tparm(tigetstr("cup"), 5, 3)`` could result in ``'\033[6;4H'``, the exact result depending on terminal type. |