Herby Vojčík пре 4 година
родитељ
комит
7824aee093
2 измењених фајлова са 3 додато и 3 уклоњено
  1. 1 1
      lang/src/Compiler-Core.js
  2. 2 2
      lang/src/Compiler-Core.st

+ 1 - 1
lang/src/Compiler-Core.js

@@ -250,7 +250,7 @@ $globals.AbstractCodeGenerator);
 
 $core.addClass("AstGenerator", $globals.AbstractCodeGenerator, ["transformersDictionary"], "Compiler-Core");
 //>>excludeStart("ide", pragmas.excludeIdeData);
-$globals.AstGenerator.comment="I am a very basic code generator.\x0aI generate semantically augemented abstract syntax tree,\x0aSome initial pragmas (eg. #inlineJS:) are applied to transform the tree,";
+$globals.AstGenerator.comment="I am a very basic code generator.\x0aI generate semantically augmented abstract syntax tree,\x0aSome initial pragmas (eg. #inlineJS:) are applied to transform the tree.";
 //>>excludeEnd("ide");
 $core.addMethod(
 $core.method({

+ 2 - 2
lang/src/Compiler-Core.st

@@ -59,8 +59,8 @@ AbstractCodeGenerator subclass: #AstGenerator
 	package: 'Compiler-Core'!
 !AstGenerator commentStamp!
 I am a very basic code generator.
-I generate semantically augemented abstract syntax tree,
-Some initial pragmas (eg. #inlineJS:) are applied to transform the tree,!
+I generate semantically augmented abstract syntax tree,
+Some initial pragmas (eg. #inlineJS:) are applied to transform the tree.!
 
 !AstGenerator methodsFor: 'compiling'!