diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-01-21 05:02:21 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-01-21 05:02:21 -0800 |
commit | b35cdb494562feabc600a6eac2913385e507f455 (patch) | |
tree | e201a22feec2420e7ad655f154183dfc7cc7bcca | |
parent | 9b8d391799a096692b6dbb576d2863efb1ae8e6b (diff) | |
download | mu-b35cdb494562feabc600a6eac2913385e507f455.tar.gz |
2584
-rw-r--r-- | 038new.cc | 2 |
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. |