diff options
author | Fred Drake <fdrake@acm.org> | 2002-03-18 16:47:14 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-03-18 16:47:14 (GMT) |
commit | f6eafc3fe16662c4d40c3f8ce3283a9d309c5023 (patch) | |
tree | e3bbab7108ad7d9fa19d258661d1bdcbc18ae6ec | |
parent | a8b663806b5576385748bca5d7f361e0c31caaba (diff) | |
download | cpython-f6eafc3fe16662c4d40c3f8ce3283a9d309c5023.zip cpython-f6eafc3fe16662c4d40c3f8ce3283a9d309c5023.tar.gz cpython-f6eafc3fe16662c4d40c3f8ce3283a9d309c5023.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 |