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 1b6c244
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
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
1 change: 0 additions & 1 deletion target

This file was deleted.

0 comments on commit 1b6c244

Please sign in to comment.