compiler/PEGFsaTransition.st
changeset 523 09afcf28ed60
parent 516 3b81c9e53352
child 525 751532c8f3db
--- a/compiler/PEGFsaTransition.st	Tue Aug 18 22:16:18 2015 +0100
+++ b/compiler/PEGFsaTransition.st	Tue Aug 18 22:46:10 2015 +0100
@@ -143,10 +143,12 @@
     1 to: 255 do: [ :index |
         disjunction
             at: index 
-            put: ((self characterSet at: index) xor: [transition characterSet at: index])
+            put: ((self characterSet at: index) xor: (transition characterSet at: index))
     ].
 
     ^ disjunction
+
+    "Modified: / 18-08-2015 / 22:41:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 intersection: transition