about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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