InlineObjectClassDescription.st
changeset 24239 41cb789c936e
parent 22812 b0111d3bb94e
child 24240 5a8ca163fbfc
--- a/InlineObjectClassDescription.st	Thu May 30 00:01:33 2019 +0200
+++ b/InlineObjectClassDescription.st	Thu May 30 11:52:35 2019 +0200
@@ -45,10 +45,13 @@
     The are created by the parsers/compilers with the following
     syntax:
         #{
-            <slotName>: value .
+            <slotName1>: value-expression .
+            <slotName2>: value-expression .
             ...
         }
-    i.e. similar to the brace-array construct { expr1 . ... }
+    where value-expressions are separated by periods   
+    i.e. similar to the brace-array construct { expr1 . expre2... }
+
     For every inline object, an anonymous class is created,
     providing getters and setters for the slots.
     (if literal objects are immutable (which is the default),