aboutsummaryrefslogtreecommitdiff
path: root/language
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2020-11-04 14:45:44 -0700
committerMelody Horn <melody@boringcactus.com>2020-11-04 14:45:44 -0700
commit02e06c6a20ecc68325671326f09583b3692fae3b (patch)
tree818726732f3b228df8c5e9f67ee215d902a67bac /language
parent76b91103955845b551f016308d2482316a355f50 (diff)
downloadspec-02e06c6a20ecc68325671326f09583b3692fae3b.tar.gz
spec-02e06c6a20ecc68325671326f09583b3692fae3b.zip
add colon to punctuator list
Diffstat (limited to 'language')
-rw-r--r--language/scanning.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/language/scanning.rst b/language/scanning.rst
index bdde234..88590f5 100644
--- a/language/scanning.rst
+++ b/language/scanning.rst
@@ -100,7 +100,7 @@ Scanning
punctuator
One of the literal sequences of characters ``[``, ``]``, ``(``, ``)``,
- ``{``, ``}``, ``.``, ``,``, ``+``, ``-``, ``*``, ``/``, ``%``, ``;``,
+ ``{``, ``}``, ``.``, ``,``, ``+``, ``-``, ``*``, ``/``, ``%``, ``;``, ``:``,
``!``, ``&``, ``|``, ``^``, ``~``, ``>``, ``<``, ``=``, ``->``, ``++``,
``--``, ``>>``, ``<<``, ``<=``, ``>=``, ``==``, ``!=``, ``&&``, ``||``,
``+=``, ``-=``, ``*=``, ``/=``, ``%=``, ``&=``, ``|=``, or ``^=``.