about summary refs log tree commit diff stats
path: root/cpp/032array.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-24 23:30:14 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-24 23:30:14 -0700
commit5b9a9f0207a0b823c3ab2eb4fa4756d980e70f1a (patch)
treedb0744245c3ed1a96b57c201bfb052eaced48a96 /cpp/032array.cc
parent29a92072feab70aabf1602ec94b18d000ade93bc (diff)
downloadmu-5b9a9f0207a0b823c3ab2eb4fa4756d980e70f1a.tar.gz
1191
Diffstat (limited to 'cpp/032array.cc')
-rw-r--r--cpp/032array.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/032array.cc b/cpp/032array.cc
index 57298e73..c1d35667 100644
--- a/cpp/032array.cc
+++ b/cpp/032array.cc
@@ -1,4 +1,5 @@
-//: Arrays contain a variable number of elements of the same type.
+//: Arrays contain a variable number of elements of the same type. Their value
+//: starts with the length of the array.
 //:
 //: You can create arrays of containers, but containers can only contain
 //: elements of a fixed size, so you can't create containers containing arrays.