about summary refs log tree commit diff stats
path: root/038new_text.cc
diff options
context:
space:
mode:
Diffstat (limited to '038new_text.cc')
-rw-r--r--038new_text.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/038new_text.cc b/038new_text.cc
index 4b666f1c..f0616c54 100644
--- a/038new_text.cc
+++ b/038new_text.cc
@@ -2,7 +2,7 @@
 
 //: A Mu text is an address to an array of characters.
 :(before "End Mu Types Initialization")
-put(Type_abbreviations, "text", new_type_tree("address:array:character"));
+put(Type_abbreviations, "text", new_type_tree("&:@:character"));
 
 :(scenario new_string)
 def main [
@@ -118,7 +118,7 @@ if (!canonize_type(x)) return false;
 :(scenario new_string_overflow)
 % Initial_memory_per_routine = 2;
 def main [
-  1:address:num/raw <- new number:type
+  1:&:num/raw <- new number:type
   2:text/raw <- new [a]  # not enough room in initial page, if you take the array length into account
 ]
 +new: routine allocated memory from 1000 to 1002