aboutsummaryrefslogtreecommitdiffhomepage
path: root/std/Box.bruijn
diff options
context:
space:
mode:
Diffstat (limited to 'std/Box.bruijn')
-rw-r--r--std/Box.bruijn2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/Box.bruijn b/std/Box.bruijn
index 3e3cbfa..1bdac0a 100644
--- a/std/Box.bruijn
+++ b/std/Box.bruijn
@@ -29,7 +29,7 @@ store! [[empty? 1 (box 0) 1]] ⧗ (Box a) → a → (Box a)
:test (store! empty [[1]]) (box [[1]])
# sets/overrides the value of a box
-set! [[(box 0)]] ⧗ (Box a) → a → (Box a)
+set! [[box 0]] ⧗ (Box a) → a → (Box a)
:test (set! (box [[0]]) [[1]]) (box [[1]])
:test (set! empty [[1]]) (box [[1]])