about summary refs log tree commit diff stats
path: root/070table.mu
diff options
context:
space:
mode:
Diffstat (limited to '070table.mu')
-rw-r--r--070table.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/070table.mu b/070table.mu
index a4ec5afb..21184084 100644
--- a/070table.mu
+++ b/070table.mu
@@ -76,7 +76,7 @@ def put-index table:&:table:_key:_value, key:_key, value:_value -> table:&:table
   occupied?:bool <- get x, occupied?:offset
   not-occupied?:bool <- not occupied?:bool
   assert not-occupied?, [can't handle collisions yet]
-  new-row:table-row:_key:_value <- merge 1/true, key, value
+  new-row:table-row:_key:_value <- merge true, key, value
   *table-data <- put-index *table-data, hash-key, new-row
 ]