aboutsummaryrefslogtreecommitdiff
path: root/help
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2022-07-07 21:23:06 -0400
committerMarshall Lochbaum <mwlochbaum@gmail.com>2022-07-07 21:23:26 -0400
commit77c6ab5c8435c9fcde7c4742ee0e5eb06341eeff (patch)
tree48ff9cf3b9066aea0e38111a9dc5ce92f87ebe96 /help
parentf14c4af888dc678eefe1de323b8fe41f7387e82b (diff)
Separate token and constant documentation into its own page
Diffstat (limited to 'help')
-rw-r--r--help/character.md2
-rw-r--r--help/comment.md2
-rw-r--r--help/infinity.md2
-rw-r--r--help/minus.md2
-rw-r--r--help/nullcharacter.md2
-rw-r--r--help/pi.md2
-rw-r--r--help/separator.md2
-rw-r--r--help/string.md2
8 files changed, 8 insertions, 8 deletions
diff --git a/help/character.md b/help/character.md
index 7f1e3487..0dd299ff 100644
--- a/help/character.md
+++ b/help/character.md
@@ -3,7 +3,7 @@
# Single Quote (`'`)
## `'c'`: Character
-[→full documentation](../doc/syntax.md#constants)
+[→full documentation](../doc/token.md#characters-and-strings)
A character literal whose value is the character between quotes. Any character can be used, even `'` and newline.
diff --git a/help/comment.md b/help/comment.md
index 9e966a50..ac661530 100644
--- a/help/comment.md
+++ b/help/comment.md
@@ -3,7 +3,7 @@
# Number Sign (`#`)
## `#`: Comment
-[→full documentation](../doc/syntax.md#comments)
+[→full documentation](../doc/token.md#comments)
Create a comment that extends to the end of the line.
diff --git a/help/infinity.md b/help/infinity.md
index d26b4614..6af8db68 100644
--- a/help/infinity.md
+++ b/help/infinity.md
@@ -3,7 +3,7 @@
# Infinity (`∞`)
## `∞`: Infinity
-[→full documentation](../doc/syntax.md#constants)
+[→full documentation](../doc/token.md#numbers)
Mathematical constant Infinity, a numeric literal. Can be negative (`¯∞`).
diff --git a/help/minus.md b/help/minus.md
index 534d553b..525fa293 100644
--- a/help/minus.md
+++ b/help/minus.md
@@ -3,7 +3,7 @@
# Macron (`¯`)
## `¯`: Minus
-[→full documentation](../doc/syntax.md#constants)
+[→full documentation](../doc/token.md#numbers)
Prefix before numbers to indicate that they are negative.
diff --git a/help/nullcharacter.md b/help/nullcharacter.md
index 6c0c18ab..95b9d753 100644
--- a/help/nullcharacter.md
+++ b/help/nullcharacter.md
@@ -3,7 +3,7 @@
# Commercial At (`@`)
## `@`: Null Character
-[→full documentation](../doc/syntax.md#constants)
+[→full documentation](../doc/token.md#characters-and-strings)
Null character, code point 0 in ASCII. A shortcut character literal.
diff --git a/help/pi.md b/help/pi.md
index e32ff767..8e106419 100644
--- a/help/pi.md
+++ b/help/pi.md
@@ -3,7 +3,7 @@
# Pi (`π`)
## `π`: Pi
-[→full documentation](../doc/syntax.md#constants)
+[→full documentation](../doc/token.md#numbers)
The mathematical constant pi, a numeric literal. Can be negative (`¯π`).
diff --git a/help/separator.md b/help/separator.md
index a64720bf..b38fdd3f 100644
--- a/help/separator.md
+++ b/help/separator.md
@@ -3,7 +3,7 @@
# Comma (`,`) and Diamond (`⋄`)
## `,` or `⋄`: Separator
-[→full documentation](../doc/syntax.md#separators)
+[→full documentation](../doc/token.md#separators)
Separates statements in blocks, programs, and arrays. Characters `,` and `⋄` are interchangeable with each other and with newline.
diff --git a/help/string.md b/help/string.md
index a8a4741f..94c0a81d 100644
--- a/help/string.md
+++ b/help/string.md
@@ -3,7 +3,7 @@
# Double Quote (`"`)
## `"str"`: String
-[→full documentation](../doc/syntax.md#constants)
+[→full documentation](../doc/token.md#characters-and-strings)
Literal notation for a string, or list of characters. Double quotes must be escaped by writing them twice. Any other characters can be included directly.