Skip to content
Snippets Groups Projects
Commit fb8d515d authored by Tomáš Pecka's avatar Tomáš Pecka
Browse files

Fix exception typo

parent 9a27608a
No related branches found
No related tags found
No related merge requests found
...@@ -39,7 +39,7 @@ String StringFromStringParser::parseString(std::istream& input, const std::set<F ...@@ -39,7 +39,7 @@ String StringFromStringParser::parseString(std::istream& input, const std::set<F
if(token.type == StringFromStringLexer::TokenType::QUOTE) { if(token.type == StringFromStringLexer::TokenType::QUOTE) {
return String(LinearString(data)); return String(LinearString(data));
} else { } else {
throw exception::AlibException("Invalid liner string terminating character"); throw exception::AlibException("Invalid linear string terminating character");
} }
} else { } else {
throw exception::AlibException(); throw exception::AlibException();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment