From ae75f964ec5aa7d85b0a35b530b676f7e4f588fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Dalby=20Larsen?= Date: Tue, 3 Sep 2024 13:46:48 +0200 Subject: [PATCH] chore: bump crate-ci/typos to 1.24.3 (#598) --- .github/workflows/ci_typos.yml | 2 +- crates/iceberg/src/spec/partition.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_typos.yml b/.github/workflows/ci_typos.yml index 9a3f77813..a293d715f 100644 --- a/.github/workflows/ci_typos.yml +++ b/.github/workflows/ci_typos.yml @@ -42,4 +42,4 @@ jobs: steps: - uses: actions/checkout@v4 - name: Check typos - uses: crate-ci/typos@v1.24.1 + uses: crate-ci/typos@v1.24.3 diff --git a/crates/iceberg/src/spec/partition.rs b/crates/iceberg/src/spec/partition.rs index 91aaf4951..f262a8c7c 100644 --- a/crates/iceberg/src/spec/partition.rs +++ b/crates/iceberg/src/spec/partition.rs @@ -65,7 +65,7 @@ pub struct PartitionSpec { } impl PartitionSpec { - /// Create partition spec builer + /// Create partition spec builder pub fn builder(schema: &Schema) -> PartitionSpecBuilder { PartitionSpecBuilder::new(schema) } @@ -152,7 +152,7 @@ pub struct UnboundPartitionSpec { } impl UnboundPartitionSpec { - /// Create unbound partition spec builer + /// Create unbound partition spec builder pub fn builder() -> UnboundPartitionSpecBuilder { UnboundPartitionSpecBuilder::default() }