about summary refs log tree commit diff stats
path: root/065duplex_list.mu
diff options
context:
space:
mode:
Diffstat (limited to '065duplex_list.mu')
-rw-r--r--065duplex_list.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/065duplex_list.mu b/065duplex_list.mu
index 5bac5424..19fcec0f 100644
--- a/065duplex_list.mu
+++ b/065duplex_list.mu
@@ -45,8 +45,8 @@ scenario duplex-list-handling [
   run [
     local-scope
     # reserve locations 0-9 to check for missing null check
-    10:number/raw <- copy 34
-    11:number/raw <- copy 35
+    10:num/raw <- copy 34
+    11:num/raw <- copy 35
     list:address:duplex-list:char <- push 3, 0
     list <- push 4, list
     list <- push 5, list
@@ -330,7 +330,7 @@ scenario removing-from-singleton-duplex-list [
     local-scope
     list:address:duplex-list:char <- push 3, 0
     list <- remove list, list
-    1:number/raw <- copy list
+    1:num/raw <- copy list
   ]
   memory-should-contain [
     1 <- 0  # back to an empty list