diff options
author | Fred Drake <fdrake@acm.org> | 2001-02-23 19:13:07 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-02-23 19:13:07 (GMT) |
commit | 447f5453222546520e664d5664d09d77289635ae (patch) | |
tree | 36dc54fc414d4e33680868b12ab5ea8e258a292d /Doc/lib/libdifflib.tex | |
parent | 3538c93f1abde3ce9e592e3cbeb9e67d1533677a (diff) | |
download | cpython-447f5453222546520e664d5664d09d77289635ae.zip cpython-447f5453222546520e664d5664d09d77289635ae.tar.gz cpython-447f5453222546520e664d5664d09d77289635ae.tar.bz2 |
Fix extra backslash in example.
Diffstat (limited to 'Doc/lib/libdifflib.tex')
-rw-r--r-- | Doc/lib/libdifflib.tex | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Doc/lib/libdifflib.tex b/Doc/lib/libdifflib.tex index 128552b..a58ae8e 100644 --- a/Doc/lib/libdifflib.tex +++ b/Doc/lib/libdifflib.tex @@ -68,11 +68,8 @@ \code{None} is equivalent to passing \code{lambda x: 0}, i.e.\ no elements are ignored. For example, pass -% BUG: the HTML generated for this is -% BUG: lambda x: x in " \\t" -% BUG: i.e. it displays two backslashes. \begin{verbatim} -lambda x: x in " \\t" +lambda x: x in " \t" \end{verbatim} if you're comparing lines as sequences of characters, and don't want |