aboutsummaryrefslogtreecommitdiff
path: root/docs/doc/glossary.html
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2021-07-06 22:18:20 -0400
committerMarshall Lochbaum <mwlochbaum@gmail.com>2021-07-06 22:18:20 -0400
commit4d602ea36183e62e463cea08900a16ea6240a03f (patch)
treef21aef763d907d7e1b093cf633c544cfcdd0a085 /docs/doc/glossary.html
parent97e31a20cefe21c1627f33057d20d7970511754f (diff)
Editing and links
Diffstat (limited to 'docs/doc/glossary.html')
-rw-r--r--docs/doc/glossary.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/doc/glossary.html b/docs/doc/glossary.html
index 02f6d1da..f1c8d39e 100644
--- a/docs/doc/glossary.html
+++ b/docs/doc/glossary.html
@@ -27,6 +27,7 @@
<li><strong>Modifier</strong>: A 1-modifier or 2-modifier.</li>
<li><strong>Data type</strong>: Number, character, or array.</li>
<li><strong>Operation type</strong>: Function, 1-modifier, or 2-modifier.</li>
+<li><strong>Mutable type</strong>: Operation or namespace.</li>
</ul>
<p>BQN uses standard terminology for particular sets of numbers, with natural numbers starting at 0.</p>
<ul>
@@ -53,7 +54,7 @@
<li><strong>Element</strong>: One of the values contained in an array.</li>
<li><strong>Axis</strong>: One dimension or direction in an array.</li>
<li><strong>Rank</strong>: The number of dimensions an array has.</li>
-<li><strong>Shape</strong>: The number of elements an array has along each dimension.</li>
+<li><a href="shape.html"><strong>Shape</strong></a>: The number of elements an array has along each dimension.</li>
<li><strong>Length</strong>: The number of elements an array has along the first dimension, or 1 if it has rank 0.</li>
<li><a href="depth.html"><strong>Depth</strong></a>: The greatest number of times an element can be selected from a value before reaching an atom.</li>
<li><strong>Fill</strong>: A &quot;prototypical&quot; array element used in certain operations; it's an inferred property of an array.</li>
@@ -68,7 +69,7 @@
</ul>
<ul>
<li><strong>Unit</strong>: An array of rank 0, or an atom.</li>
-<li><strong>Unit array</strong>: An array of rank 0 other than an atom.</li>
+<li><a href="enclose.html#whats-a-unit"><strong>Unit array</strong></a>: An array of rank 0 other than an atom.</li>
<li><strong>List</strong>: An array of rank 1.</li>
<li><strong>String</strong>: A list of characters.</li>
<li><strong>Table</strong>: An array of rank 2.</li>
@@ -103,7 +104,7 @@
<li><strong>Token formation</strong> or tokenization: Splitting source code into a sequence of tokens.</li>
<li><strong>Token</strong>: A name, literal, primitive, or other syntactic element.</li>
<li><strong>Literal</strong>: A token that indicates a fixed value of a data type.</li>
-<li><strong>Primitive</strong>: One of several fixed operations defined by the language, denoted by a single-character token.</li>
+<li><a href="primitive.html"><strong>Primitive</strong></a>: One of several fixed operations defined by the language, denoted by a single-character token.</li>
<li><strong>Word</strong>: A sequence of alphabetic or numeric characters.</li>
<li><strong>Name</strong>: A word that starts with an alphabetic character. Names are compared case-insensitively and ignoring underscores <code><span class='Modifier2'>_</span></code>.</li>
<li><strong>Numeric literal</strong>: A word that starts with a numeric character, indicating a number.</li>