aboutsummaryrefslogtreecommitdiff
path: root/language/scanning.rst
diff options
context:
space:
mode:
Diffstat (limited to 'language/scanning.rst')
-rw-r--r--language/scanning.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/language/scanning.rst b/language/scanning.rst
index 86177ac..ed85ead 100644
--- a/language/scanning.rst
+++ b/language/scanning.rst
@@ -11,10 +11,10 @@ Scanning
Punctuators, string literals, and character constants do not require explicit separation from adjacent tokens.
keyword
- One of the literal words ``bool``, :crowbar:ref:`break`, ``case``,
+ One of the literal words ``bool``, ``break``, ``case``,
``char``, ``const``, ``continue``, ``default``, ``do``, ``double``,
``else``, ``enum``, ``extern``, ``float``, ``for``, ``fragile``,
- ``function``, ``if``, ``include``, ``int``, ``long``, ``return``,
+ ``function``, ``if``, :crowbar:ref:`include <IncludeStatement>`, ``int``, ``long``, ``return``,
``short``, ``signed``, ``sizeof``, ``struct``, ``switch``,
``unsigned``, ``void``, or ``while``.
@@ -67,7 +67,7 @@ Scanning
character constant
A pair of single quotes ``'`` surrounding either a single character or an :term:`escape sequence`.
The single character may not be a single quote or a backslash ``\``.
- Denotes the Unicode code point number for either the single surrounded character or the character denoted by the escape sequence.
+ Denotes the Unicode scalar value for either the single surrounded character or the character denoted by the escape sequence.
escape sequence
One of the following pairs of characters: