diff --git a/tconfpy.3 b/tconfpy.3
index cd8b8b5..77fdbc0 100644
--- a/tconfpy.3
+++ b/tconfpy.3
@@ -908,6 +908,11 @@
 This is discussed in a later section on lexical namespaces.
 
 .IP \(bu 4
+Variable names cannot contain the \'[\' or \']\' characters.  These
+are reserved symbols used to indicate a variable
+.B reference.
+
+.IP \(bu 4
 You cannot have a variable whose name is the empty string.  This is
 illegal:
 
@@ -1070,9 +1075,9 @@
     BAR          = Me
     Oh[FOO][BAR] = Goodness Gracious Me!
 
-    # But This Does NOT Do What You Might Think
+    # But This Kind Of Nesting Attempt Causes An Error
 
-    [FOO[BAR]] = Something Or Other  # Avoid nested constructs like this!
+    [FOO[BAR]] = Something Or Other
 .fi
 
 .SS Lexical Namespaces