CustomSimpleGetterMethodsCodeGenerator.st
changeset 556 107e4a470e73
parent 549 d34ea0b715b2
child 559 ba4af98f41c5
child 566 29c2269d339a
--- a/CustomSimpleGetterMethodsCodeGenerator.st	Sun May 25 22:32:52 2014 +0200
+++ b/CustomSimpleGetterMethodsCodeGenerator.st	Mon Jun 02 21:57:20 2014 +0200
@@ -37,8 +37,8 @@
         | varType |
 
         varType := self varTypeOf: aName class: aClass.
-        comment := '"return the %1 instance variable ''%2'' (automatically generated)"'.
-        comment bindWith: varType with: aName.
+        comment := '"return the %1 variable ''%2'' (automatically generated)"'.
+        comment := comment bindWith: varType with: aName.
     ].  
 
     methodBuilder := builder methodBuilder.
@@ -54,5 +54,6 @@
     ^ methodBuilder buildedSource
 
     "Created: / 19-05-2014 / 20:32:34 / Jakub Nesveda <nesvejak@fit.cvut.cz>"
+    "Modified: / 02-06-2014 / 21:35:37 / Jakub Nesveda <nesvejak@fit.cvut.cz>"
 ! !