about summary refs log tree commit diff stats
path: root/fork.mu
diff options
context:
space:
mode:
Diffstat (limited to 'fork.mu')
-rw-r--r--fork.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/fork.mu b/fork.mu
index 1cf7aa71..ba19e3af 100644
--- a/fork.mu
+++ b/fork.mu
@@ -1,6 +1,6 @@
 (function main [
   (fork thread2:fn)
-  (default-scope:scope-address <- new scope:literal 2:literal)
+  (default-space:space-address <- new space:literal 2:literal)
   (x:integer <- copy 34:literal)
   { begin
     (print-primitive x:integer)
@@ -9,7 +9,7 @@
 ])
 
 (function thread2 [
-  (default-scope:scope-address <- new scope:literal 2:literal)
+  (default-space:space-address <- new space:literal 2:literal)
   (y:integer <- copy 35:literal)
   { begin
     (print-primitive y:integer)