about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-19 10:36:46 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-19 10:36:46 -0700
commitf0fbbf79dbf2d1a44a32778706866f454619303e (patch)
treebfa8b3e09c4266e54466bc7dfd15ca3a69ab3621
parent72d7e2d0297afc5998b5b5c710cd6df9e7741f00 (diff)
downloadmu-f0fbbf79dbf2d1a44a32778706866f454619303e.tar.gz
1406
-rw-r--r--063list.mu5
1 files changed, 5 insertions, 0 deletions
diff --git a/063list.mu b/063list.mu
index 00f36c7c..22343b93 100644
--- a/063list.mu
+++ b/063list.mu
@@ -1,3 +1,8 @@
+# A list links up multiple objects together to make them easier to manage.
+#
+# Try to make all objects in a single list of the same type, it'll help avoid bugs.
+# If you want to store multiple types in a single list, use an exclusive-container.
+
 container list [
   value:location
   next:address:list