SmallSense__SmalltalkEditSupport.st
changeset 234 97857872ee47
parent 219 c69943a410fd
child 242 7a056a0ab77c
child 246 9e5790683f85
child 343 b3d22e8c0a05
--- a/SmallSense__SmalltalkEditSupport.st	Thu May 22 16:15:30 2014 +0100
+++ b/SmallSense__SmalltalkEditSupport.st	Fri May 23 12:58:31 2014 +0100
@@ -143,7 +143,7 @@
 
                         eachName := 'each'.
                         tokens size > 4 ifTrue:[
-                            (collectionName := (tokens at:tokens size - 6) last = $s) ifTrue:[
+                            ((collectionName := tokens at:tokens size - 6) last = $s) ifTrue:[
                                 (collectionName endsWith:'ses') ifTrue:[
                                     eachName := collectionName copyButLast:2
                                 ] ifFalse:[
@@ -161,7 +161,7 @@
     ^ false.
 
     "Created: / 22-10-2013 / 03:00:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 22-10-2013 / 12:00:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 23-05-2014 / 11:28:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !SmalltalkEditSupport methodsFor:'event handling'!