#DOCUMENTATION by exept
authorClaus Gittinger <cg@exept.de>
Wed, 21 Aug 2019 23:06:23 +0200
changeset 5136 761208260bf6
parent 5135 6581016acc86
child 5137 5dd0d9a21576
#DOCUMENTATION by exept class: Matrix3_3 comment/format in: #_at:at: #_at:at:put:
Matrix3_3.st
--- a/Matrix3_3.st	Wed Aug 21 23:06:15 2019 +0200
+++ b/Matrix3_3.st	Wed Aug 21 23:06:23 2019 +0200
@@ -42,7 +42,7 @@
     "this is a synthetic selector, generated by the compiler,
      if a construct of the form expr[idx...] is parsed.
      I.e. 
-        foo[n,m]
+        foo[n][m]
      generates
         foo _at:n at:m
     "
@@ -59,7 +59,7 @@
     "this is a synthetic selector, generated by the compiler,
      if a construct of the form expr[idx...] := val is parsed.
      I.e. 
-        foo[n,m] := val
+        foo[n][m] := val
      generates
         foo _at:n at:m put:val
     "