about summary refs log tree commit diff stats
path: root/cpp/032array
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/032array')
-rw-r--r--cpp/032array4
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/032array b/cpp/032array
index fbb5ed7b..a4f5ecba 100644
--- a/cpp/032array
+++ b/cpp/032array
@@ -1,4 +1,8 @@
 //: Arrays contain a variable number of elements of the same type.
+//:
+//: You can create arrays of containers, but containers can only contain
+//: elements of a fixed size, so you can't create containers containing arrays.
+//: Create containers containing addresses to arrays instead.
 
 :(scenario copy_array)
 # Arrays can be copied around with a single instruction just like integers,