about summary refs log tree commit diff stats
path: root/043new.cc
diff options
context:
space:
mode:
Diffstat (limited to '043new.cc')
-rw-r--r--043new.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/043new.cc b/043new.cc
index e1cf3e68..13240cfe 100644
--- a/043new.cc
+++ b/043new.cc
@@ -48,7 +48,7 @@ case NEW: {
   break;
 }
 
-//:: translate 'new' to 'alloc' instructions that take a size instead of a type
+//:: translate 'new' to 'allocate' instructions that take a size instead of a type
 :(after "Transform.push_back(check_instruction)" following "Transform.push_back(check_invalid_types)")  // so that all types are defined
 Transform.push_back(transform_new_to_allocate);