summaryrefslogtreecommitdiff
path: root/src/parser/smt2/Smt2.g
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/smt2/Smt2.g')
-rw-r--r--src/parser/smt2/Smt2.g4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser/smt2/Smt2.g b/src/parser/smt2/Smt2.g
index 22b2244a0..d7f4489bf 100644
--- a/src/parser/smt2/Smt2.g
+++ b/src/parser/smt2/Smt2.g
@@ -1541,7 +1541,7 @@ str[std::string& s, bool fsmtlib]
s = s.substr(1, s.size() - 2);
for(size_t i=0; i<s.size(); i++) {
if((unsigned)s[i] > 127 && !isprint(s[i])) {
- PARSER_STATE->parseError("Extended/unprintable characters are not part of SMT-LIB, and they must be encoded as esacped sequences");
+ PARSER_STATE->parseError("Extended/unprintable characters are not part of SMT-LIB, and they must be encoded as escape sequences");
}
}
if(fsmtlib) {
@@ -1573,7 +1573,7 @@ str[std::string& s, bool fsmtlib]
s = s.substr(1, s.size() - 2);
for(size_t i=0; i<s.size(); i++) {
if((unsigned)s[i] > 127 && !isprint(s[i])) {
- PARSER_STATE->parseError("Extended/unprintable characters are not part of SMT-LIB, and they must be encoded as esacped sequences");
+ PARSER_STATE->parseError("Extended/unprintable characters are not part of SMT-LIB, and they must be encoded as escape sequences");
}
}
// In the 2.5 version, always handle escapes (regardless of fsmtlib flag).
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback