Browse Source

Fixed typos in error message

Yentl Van Tendeloo 8 years ago
parent
commit
b48429df8b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/python_sccd/python_sccd_compiler/state_linker.py

+ 1 - 1
src/python_sccd/python_sccd_compiler/state_linker.py

@@ -101,7 +101,7 @@ class StateLinker(Visitor):
                         current_node = child
                         break
                 if not found :
-                    raise StateReferenceException("Refering to non exiting node " + cname + " at posisition " + str(token.pos) + " in state reference.")
+                    raise StateReferenceException("Refering to non existing node " + cname + " at position " + str(token.pos) + " in state reference.")
             elif token.type == TokenType.LBRACKET :
                 split_stack.append(current_node)
             elif token.type == TokenType.RBRACKET :