Eren Yilmaz 6 年之前
父节点
当前提交
e158045154
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/animation/PseudoCodeProcessor.java

+ 1 - 1
src/animation/PseudoCodeProcessor.java

@@ -76,7 +76,7 @@ public class PseudoCodeProcessor {
                 });
             }
             if( programPointer.children() == null )
-                throw new IllegalStateException( "A Codeline without sublines tryd to make a STEP_INTO." );
+                throw new IllegalStateException( "A Codeline without sublines tried to make a STEP_INTO." );
             else
                 return selectNextNode( (PseudoCodeNode)programPointer.getFirstChild(), programPointer );
         case ControlFlow.STEP_OVER: