Skip to content

Commit

Permalink
refactor: fix typos in error message (#1009)
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennebacher authored Apr 1, 2024
1 parent 50b44de commit 3c0d0ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rust/src/utils/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -261,9 +261,9 @@ const I32_MAX_INTO_F64: f64 = i32::MAX as f64;
pub const BIT64_NA_ENCODING: i64 = -9223372036854775808i64;

const WITHIN_INT_MAX: &str =
"cannot exceeds double->integer unambigious conversion bound of 2^52 = 4503599627370496.0";
"cannot exceeds double->integer unambiguous conversion bound of 2^52 = 4503599627370496.0";
const WITHIN_INT_MIN: &str =
"cannot exceeds double->integer unambigious conversion bound of -(2^52)= -4503599627370496.0";
"cannot exceeds double->integer unambiguous conversion bound of -(2^52)= -4503599627370496.0";
const WITHIN_USIZE_MAX: &str = "cannot exceed the upper bound for usize";
const WITHIN_U32_MAX: &str = "cannot exceed the upper bound for u32 of 4294967295";
const WITHIN_I32_MIN: &str = "cannot exceed the upper bound for i32 of 2147483647";
Expand Down

0 comments on commit 3c0d0ec

Please sign in to comment.