From bd43d374dc66f2f1730d066e9a25d1a3db8bfa98 Mon Sep 17 00:00:00 2001 From: albertodemichelis Date: Sun, 7 Aug 2016 01:29:58 +0800 Subject: [PATCH] minor documentation fixes --- doc/source/reference/language/expressions.rst | 4 ++-- doc/source/stdlib/stdstringlib.rst | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/source/reference/language/expressions.rst b/doc/source/reference/language/expressions.rst index 7b9683d..c158219 100644 --- a/doc/source/reference/language/expressions.rst +++ b/doc/source/reference/language/expressions.rst @@ -243,7 +243,7 @@ Operators precedence +---------------------------------------+-----------+ | ``<<, >>, >>>`` | | +---------------------------------------+-----------+ -| ``<, <=, >, >=`` | | +| ``<, <=, >, >=, instanceof`` | | +---------------------------------------+-----------+ | ``==, !=, <=>`` | | +---------------------------------------+-----------+ @@ -253,7 +253,7 @@ Operators precedence +---------------------------------------+-----------+ | ``&&, in`` | | +---------------------------------------+-----------+ -| ``+=, =, -=`` | ... | +| ``+=, =, -=, /=, *=, %=`` | ... | +---------------------------------------+-----------+ | ``, (comma operator)`` | lowest | +---------------------------------------+-----------+ diff --git a/doc/source/stdlib/stdstringlib.rst b/doc/source/stdlib/stdstringlib.rst index f6e7f14..addb037 100644 --- a/doc/source/stdlib/stdstringlib.rst +++ b/doc/source/stdlib/stdstringlib.rst @@ -158,9 +158,9 @@ The regexp class +---------------------+--------------------------------------+ | `\\C` | non control characters | +---------------------+--------------------------------------+ -| `\\p` | punctuation | +| `\\p` | punctuation | +---------------------+--------------------------------------+ -| `\\P` | non punctuation | +| `\\P` | non punctuation | +---------------------+--------------------------------------+ | `\\b` | word boundary | +---------------------+--------------------------------------+