about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
Diffstat (limited to '010vm.cc')
-rw-r--r--010vm.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/010vm.cc b/010vm.cc
index f264f752..b2703b3c 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -68,7 +68,7 @@ struct property {
 };
 
 // Types can range from a simple type ordinal, to arbitrarily complex trees of
-// type ordinals.
+// type parameters, like (map (address array character) (list number))
 struct type_tree {
   type_ordinal value;
   type_tree* left;
@@ -92,7 +92,7 @@ Memory.clear();
 :(after "Types")
 // Mu types encode how the numbers stored in different parts of memory are
 // interpreted. A location tagged as a 'character' type will interpret the
-// number 97 as the letter 'a', while a different location of type 'number'
+// value 97 as the letter 'a', while a different location of type 'number'
 // would not.
 //
 // Unlike most computers today, mu stores types in a single big table, shared