diff options
| author | Marshall Lochbaum <mwlochbaum@gmail.com> | 2022-07-07 21:23:06 -0400 |
|---|---|---|
| committer | Marshall Lochbaum <mwlochbaum@gmail.com> | 2022-07-07 21:23:26 -0400 |
| commit | 77c6ab5c8435c9fcde7c4742ee0e5eb06341eeff (patch) | |
| tree | 48ff9cf3b9066aea0e38111a9dc5ce92f87ebe96 /doc/glossary.md | |
| parent | f14c4af888dc678eefe1de323b8fe41f7387e82b (diff) | |
Separate token and constant documentation into its own page
Diffstat (limited to 'doc/glossary.md')
| -rw-r--r-- | doc/glossary.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/glossary.md b/doc/glossary.md index cd68e6c9..cd5b1853 100644 --- a/doc/glossary.md +++ b/doc/glossary.md @@ -89,10 +89,10 @@ BQN uses standard terminology for particular sets of numbers, with natural numbe * [**Primitive**](primitive.md): One of several fixed operations defined by the language, denoted by a single-character token. * **Word**: A sequence of alphabetic or numeric characters. * **Name**: A word that starts with an alphabetic character. Names are compared case-insensitively and ignoring underscores `_`. -* [**Numeric literal**](syntax.md#constants): A word that starts with a numeric character, indicating a number. +* [**Numeric literal**](token.md#numbers): A word that starts with a numeric character, indicating a number. * [**String literal**](arrayrepr.md#strings): A literal written with double quotes `""`, indicating a string. -* [**Character literal**](syntax.md#constants): A literal written with single quotes `''`, indicating a string. -* [**Null literal**](syntax.md#constants): The literal `@`, indicating the null character (code point 0). +* [**Character literal**](token.md#characters-and-strings): A literal written with single quotes `''`, indicating a string. +* [**Null literal**](token.md#characters-and-strings): The literal `@`, indicating the null character (code point 0). ## Grammar |
