aboutsummaryrefslogtreecommitdiff
path: root/spec/system.md
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2022-05-24 22:03:26 -0400
committerMarshall Lochbaum <mwlochbaum@gmail.com>2022-05-24 22:03:26 -0400
commit3a1e71f88e3f1acf1a4ddc24e5bceb401d20a57d (patch)
treefbe4948c5f17b4bfb43b3a2ebd5da745b310427c /spec/system.md
parentf4ae33860ce4811859e20364f074ff7cfe98b3cd (diff)
•bit._conv doesn't exist
Diffstat (limited to 'spec/system.md')
-rw-r--r--spec/system.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/system.md b/spec/system.md
index aa692dfe..b7bca1fd 100644
--- a/spec/system.md
+++ b/spec/system.md
@@ -224,7 +224,7 @@ A **pointer** such as `*u8` comes from a BQN list. If the symbol `&` is used rat
The letter `a` indicates that a **BQN value** is to be passed directly, interpreted in whatever way makes sense for the implementation. A plain `*` indicates an **opaque pointer**, to be mapped to a BQN value of namespace type. The behavior of this value is not yet specified. The **array** and **struct** types indicate C structs and arrays, and correspond to BQN lists.
-The `bqn` value in a `conv` term indicates a BQN element type to be used. It can be appear after the whole type, or any member of a struct, and applies to the final component (that is, `type` term) of the type *and* one preceding `*`, `&`, or `[n]` if present (if a type ends in `**`, it applies to both `*`s). This portion of the type corresponds to a BQN list of the given element type, interpreted much like [bitwise](#bitwise-operations) conversion `•bit._conv`. The C type is treated as pure data, a stream of bits. For a prefix `*` or `&`, the data in question is the region of memory pointed to.
+The `bqn` value in a `conv` term indicates a BQN element type to be used. It can be appear after the whole type, or any member of a struct, and applies to the final component (that is, `type` term) of the type *and* one preceding `*`, `&`, or `[n]` if present (if a type ends in `**`, it applies to both `*`s). This portion of the type corresponds to a BQN list of the given element type, interpreted much like [bitwise](#bitwise-operations) conversion `•bit._cast`. The C type is treated as pure data, a stream of bits. For a prefix `*` or `&`, the data in question is the region of memory pointed to.
## Operation properties