diff options
author | Raymond Hettinger <python@rcn.com> | 2003-09-06 05:47:31 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-09-06 05:47:31 (GMT) |
commit | 99812134be060d47109ab7b026dbe0333a09fa7b (patch) | |
tree | dad8e0cb496bf1f43cac99be50de28bc10a870bc | |
parent | 1c90a6754c00938b3ef38a0aaaae1385ac1a6c89 (diff) | |
download | cpython-99812134be060d47109ab7b026dbe0333a09fa7b.zip cpython-99812134be060d47109ab7b026dbe0333a09fa7b.tar.gz cpython-99812134be060d47109ab7b026dbe0333a09fa7b.tar.bz2 |
SF bug 799191: fix markup
-rw-r--r-- | Doc/lib/libfuncs.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex index 185723a..b70433e 100644 --- a/Doc/lib/libfuncs.tex +++ b/Doc/lib/libfuncs.tex @@ -707,7 +707,7 @@ class C: \begin{funcdesc}{ord}{c} Return the \ASCII{} value of a string of one character or a Unicode character. E.g., \code{ord('a')} returns the integer \code{97}, - \code{ord(u'\\u2020')} returns \code{8224}. This is the inverse of + \code{ord(u'\e u2020')} returns \code{8224}. This is the inverse of \function{chr()} for strings and of \function{unichr()} for Unicode characters. \end{funcdesc} |