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.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/010vm.cc b/010vm.cc
index f860a953..f34f2232 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -345,7 +345,7 @@ type_tree* new_type_tree(const string_tree* properties) {
     int value = 0;
     if (contains_key(Type_ordinal, type_name))
       value = get(Type_ordinal, type_name);
-    else if (is_integer(type_name))  // sometimes types will contain non-type tags, like numbers for the size of an array
+    else if (is_integer(type_name))  // sometimes types will contain literal integers, like for the size of an array
       value = 0;
     else if (properties->value == "->")  // used in recipe types
       value = 0;