Fix typo.
authorMorgan Deters <mdeters@cs.nyu.edu>
Tue, 13 Jan 2015 18:24:09 +0000 (13:24 -0500)
committerMorgan Deters <mdeters@cs.nyu.edu>
Tue, 13 Jan 2015 18:24:09 +0000 (13:24 -0500)
src/parser/smt2/Smt2.g

index 22b2244a0a61682428d74eb93562a0c4e3c6f587..d7f4489bf24cd2054556cfb41c41ab5d17805f61 100644 (file)
@@ -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).