fix incorrect enum

This commit is contained in:
2023-02-18 23:02:49 -03:00
parent d8ae5e1b95
commit 2f54f13b54

View File

@@ -40,7 +40,7 @@ int obelisk::Lexer::getToken()
if (getIdentifier() == "rule")
{
return Token::kTokenFact;
return Token::kTokenRule;
}
if (getIdentifier() == "action")