diff options
author | Fred Drake <fdrake@acm.org> | 2002-03-18 16:47:35 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-03-18 16:47:35 (GMT) |
commit | 0c3ea5d7a5b757da625abf15d0499a80a50dd99e (patch) | |
tree | f6f559f4b21ee7c58ad938517ad876d09401dad6 | |
parent | 8f3f8451645f491739a524cfa15550c7300f8ee6 (diff) | |
download | cpython-0c3ea5d7a5b757da625abf15d0499a80a50dd99e.zip cpython-0c3ea5d7a5b757da625abf15d0499a80a50dd99e.tar.gz cpython-0c3ea5d7a5b757da625abf15d0499a80a50dd99e.tar.bz2 |
Fix up unescaped tilde; reported by several people.
-rw-r--r-- | Doc/ref/ref5.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref/ref5.tex b/Doc/ref/ref5.tex index 8101cb9..fb8e3dd 100644 --- a/Doc/ref/ref5.tex +++ b/Doc/ref/ref5.tex @@ -629,7 +629,7 @@ All unary arithmetic (and bit-wise) operations have the same priority: \begin{productionlist} \production{u_expr} {\token{power} | "-" \token{u_expr} - | "+" \token{u_expr} | "~" \token{u_expr}} + | "+" \token{u_expr} | "{\~}" \token{u_expr}} \end{productionlist} The unary \code{-} (minus) operator yields the negation of its |