Skip to content

Commit 4ced30b

Browse files
authored
chore(deps): Update typo to 1.35.3 (#1597)
## Which issue does this PR close? - Closes #1595 . ## What changes are included in this PR? Update typo to 1.35.3 and replace the three misspellings of compatitable with compatible ## Are these changes tested? Install typos-cli and pass the inspection ``` cargo install typos-cli typos . ```
1 parent b174c45 commit 4ced30b

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

.github/workflows/ci_typos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ jobs:
4242
steps:
4343
- uses: actions/checkout@v4
4444
- name: Check typos
45-
uses: crate-ci/typos@v1.34.0
45+
uses: crate-ci/typos@v1.35.3

Cargo.lock

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/iceberg/src/arrow/value.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ impl SchemaWithPartnerVisitor<ArrayRef> for ArrowArrayToIcebergStructConverter {
262262
return Err(Error::new(
263263
ErrorKind::DataInvalid,
264264
format!(
265-
"The precision or scale ({},{}) of arrow decimal128 array is not compatitable with iceberg decimal type ({},{})",
265+
"The precision or scale ({},{}) of arrow decimal128 array is not compatible with iceberg decimal type ({},{})",
266266
arrow_precision, arrow_scale, precision, scale
267267
),
268268
));
@@ -395,7 +395,7 @@ impl SchemaWithPartnerVisitor<ArrayRef> for ArrowArrayToIcebergStructConverter {
395395
if array.value_length() != *len as i32 {
396396
return Err(Error::new(
397397
ErrorKind::DataInvalid,
398-
"The length of fixed size binary array is not compatitable with iceberg fixed type",
398+
"The length of fixed size binary array is not compatible with iceberg fixed type",
399399
));
400400
}
401401
Ok(array

crates/iceberg/src/spec/datatypes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@ mod tests {
11771177
}
11781178

11791179
#[test]
1180-
fn test_primitive_type_compatitable() {
1180+
fn test_primitive_type_compatible() {
11811181
let pairs = vec![
11821182
(PrimitiveType::Boolean, PrimitiveLiteral::Boolean(true)),
11831183
(PrimitiveType::Int, PrimitiveLiteral::Int(1)),

0 commit comments

Comments
 (0)