about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--038new.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/038new.cc b/038new.cc
index 88e5a515..826507f2 100644
--- a/038new.cc
+++ b/038new.cc
@@ -7,7 +7,7 @@
 //: In practice it's useful to let programs copy addresses anywhere they want,
 //: but a prime source of (particularly security) bugs is accessing memory
 //: after it's been abandoned. To avoid this, mu programs use a safer
-//: primitive called 'new', which performs two operations:
+//: primitive called 'new', which adds two features:
 //:
 //: - it takes a type rather than a size, to save you the trouble of
 //: calculating sizes of different variables.