aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthe lemons <citrons@mondecitronne.com>2022-02-18 03:15:51 -0600
committerthe lemons <citrons@mondecitronne.com>2022-02-18 03:15:51 -0600
commitaacaf3ff221856aafc9a40893c489d2dc640e84c (patch)
tree57093642b9561f6dda193c00cdd25efd1d25d0c9
parent70450db2f5b58d108f50a2b38f5617223d57b2c6 (diff)
be more specific about list coercion
-rw-r--r--readme.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/readme.md b/readme.md
index a31eca1..b0644bf 100644
--- a/readme.md
+++ b/readme.md
@@ -58,7 +58,7 @@ g>:f
```
## lists
-a list is a special type of noun. they contain any amount of nouns in a specific order, including lists themselves. certain operators expect lists as operands. if a nonlist is passed to these operators, then the operand is treated as a list containing that noun. lists can be composed with the `,` operator. it is similar to a "cons" operation. it appends the first operand to the second operand, which is assumed to be a list.
+a list is a special type of noun. they contain any amount of nouns in a specific order, including lists themselves. certain operators expect lists as operands. if a nonlist is passed to these operators, then the operand is treated as a list with that noun as its only element. lists can be composed with the `,` operator. it is similar to a "cons" operation. it appends the first operand to the second operand, which is assumed to be a list.
lists exist unconditionally. there is only one instance of a given list. lists are not the same thing as anything else and they cannot cause anything to happen.