Skip to content

Commit

Permalink
Update lilParser.cpp
Browse files Browse the repository at this point in the history
Lots of comment changes
  • Loading branch information
leftCoast authored Mar 27, 2024
1 parent ea0323e commit 1010303
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lilParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ lilParser::~lilParser(void) {


// Add a command ID and matching type-able string. Multiple strings can match with an ID.
// But you dn't want more than one ID to match a string. That won'y work.
// But you don't want more than one ID to match a string. That won't work.
void lilParser::addCmd(int inCmdNum, const char* inCmd) {

cmdTemplate* newCmd;
Expand Down Expand Up @@ -76,6 +76,7 @@ int lilParser::addChar(char inChar) {
return 0;
}


// This resets everything for a new parse.
void lilParser::resetParse(void) {

Expand Down

0 comments on commit 1010303

Please sign in to comment.