aboutsummaryrefslogtreecommitdiff
path: root/doc/glossary.md
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2021-06-12 22:26:00 -0400
committerMarshall Lochbaum <mwlochbaum@gmail.com>2021-06-12 22:30:21 -0400
commite8d6aa976783bcb7cb5855880ff056a023f12471 (patch)
treecf9661d34743f2aa9d202ca5e441222ad0706892 /doc/glossary.md
parent016a32f7f798efefbf0376f07ecd12868b8160f3 (diff)
Update some documentation to account for namespaces
Diffstat (limited to 'doc/glossary.md')
-rw-r--r--doc/glossary.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/glossary.md b/doc/glossary.md
index eba5e8c3..d16f5584 100644
--- a/doc/glossary.md
+++ b/doc/glossary.md
@@ -7,7 +7,7 @@ Below are short, and sometimes vague, definitions of terms used to describe BQN
## Types
* **Value**: Something that can be stored in variables and manipulated by a BQN programmer.
-* [**Type**](types.md): One of six possible kinds of value.
+* [**Type**](types.md): One of seven possible kinds of value.
The possible types are:
* [**Number**](types.md#numbers): Like some caveman was counting but then forty thousand years of math happened to it.
@@ -16,6 +16,7 @@ The possible types are:
* [**Function**](types.md#functions): An operation that is called on one or two arguments.
* [**1-modifier**](types.md#modifiers): An operation that is called on one operand.
* [**2-modifier**](types.md#modifiers): An operation that is called on two operands.
+* [**Namespace**](namespace.md): A container for variables, some of which are exposed as fields.
A few terms refer to multiple types collectively:
* **Atom**: A value that's not an array.