diff options
author | Melody Horn <melody@boringcactus.com> | 2020-11-04 14:45:44 -0700 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2020-11-04 14:45:44 -0700 |
commit | 02e06c6a20ecc68325671326f09583b3692fae3b (patch) | |
tree | 818726732f3b228df8c5e9f67ee215d902a67bac /language | |
parent | 76b91103955845b551f016308d2482316a355f50 (diff) | |
download | spec-02e06c6a20ecc68325671326f09583b3692fae3b.tar.gz spec-02e06c6a20ecc68325671326f09583b3692fae3b.zip |
add colon to punctuator list
Diffstat (limited to 'language')
-rw-r--r-- | language/scanning.rst | 2 |
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 ``^=``. |