We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a702e77 commit f59f257Copy full SHA for f59f257
src/solvers/smt2_incremental/smt_response_validation.cpp
@@ -229,7 +229,7 @@ static optionalt<smt_termt> valid_smt_hex(const std::string &text)
229
if(!std::regex_match(text, hex_format))
230
return {};
231
const std::string hex{text.begin() + 2, text.end()};
232
- // SMT-LIB 2 allows hex characters to be upper of lower case, but they should
+ // SMT-LIB 2 allows hex characters to be upper or lower case, but they should
233
// be upper case for mp_integer.
234
const mp_integer value =
235
string2integer(make_range(hex).map<std::function<int(int)>>(toupper), 16);
0 commit comments