From 607843748732eef0f10a5716072bfa930f0a0b6e Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Thu, 10 Nov 2022 19:44:06 -0300 Subject: [PATCH] fix typo and extra method --- src/parser.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/parser.cpp b/src/parser.cpp index c553891..bef1777 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -243,7 +243,7 @@ std::unique_ptr obelisk::Parser::parseRule() break; }*/ } - while (true) //right side of Ruke + while (true) //right side of Rule { getNextToken(); if (getCurrentToken() != '"') @@ -367,7 +367,3 @@ void obelisk::Parser::handleFact() { parseFact(); } - -void obelisk::Parser::insertFact() -{ -}