Skip to content

Commit f59f257

Browse files
committed
Fix "of"/"or" typo in comment
1 parent a702e77 commit f59f257

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solvers/smt2_incremental/smt_response_validation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ static optionalt<smt_termt> valid_smt_hex(const std::string &text)
229229
if(!std::regex_match(text, hex_format))
230230
return {};
231231
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
232+
// SMT-LIB 2 allows hex characters to be upper or lower case, but they should
233233
// be upper case for mp_integer.
234234
const mp_integer value =
235235
string2integer(make_range(hex).map<std::function<int(int)>>(toupper), 16);

0 commit comments

Comments
 (0)