about summary refs log tree commit diff stats
path: root/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp')
-rw-r--r--cpp/010vm.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/010vm.cc b/cpp/010vm.cc
index 6e314b4e..40f8f269 100644
--- a/cpp/010vm.cc
+++ b/cpp/010vm.cc
@@ -81,7 +81,7 @@ void setup_types() {
   Next_type_number = 1;
   // Mu Types Initialization
   int integer = Type_number["integer"] = Next_type_number++;
-  Type_number["location"] = Type_number["integer"];  // wildcard type
+  Type_number["location"] = Type_number["integer"];  // wildcard type: either a pointer or a scalar
   Type[integer].name = "integer";
   int address = Type_number["address"] = Next_type_number++;
   Type[address].name = "address";