Skip to content

Commit

Permalink
review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
rukai committed Nov 19, 2024
1 parent 158e9e7 commit aba6ca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scylla/src/utils/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ impl<'s> ParserState<'s> {
if let Ok(value) = digits.parse() {
Ok((value, p))
} else {
Err(p.error(ParseErrorCause::Expected("integer of max length 2**32")))
Err(p.error(ParseErrorCause::Other("Expected 32-bit signed integer")))
}
}

Expand Down

0 comments on commit aba6ca7

Please sign in to comment.