fix incorrect enum

This commit is contained in:
Chris Cromer 2023-02-18 23:02:49 -03:00
parent d8ae5e1b95
commit 2f54f13b54
Signed by: cromer
GPG Key ID: FA91071797BEEEC2
1 changed files with 1 additions and 1 deletions

View File

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