From fe1010c54520a3d3e0db2712bb08451d5648184a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 5 Oct 2025 13:04:41 +0000 Subject: [PATCH 1/2] Bump crate-ci/typos from 1.36.3 to 1.37.2 Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.36.3 to 1.37.2. - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](https://github.com/crate-ci/typos/compare/v1.36.3...v1.37.2) --- updated-dependencies: - dependency-name: crate-ci/typos dependency-version: 1.37.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/ci_typos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_typos.yml b/.github/workflows/ci_typos.yml index 7bff5e4c7..050ef7387 100644 --- a/.github/workflows/ci_typos.yml +++ b/.github/workflows/ci_typos.yml @@ -44,4 +44,4 @@ jobs: steps: - uses: actions/checkout@v5 - name: Check typos - uses: crate-ci/typos@v1.36.3 + uses: crate-ci/typos@v1.37.2 From 544a023617d92947b26c4f1447b2dab90eac748f Mon Sep 17 00:00:00 2001 From: dentiny Date: Sun, 5 Oct 2025 17:12:19 +0000 Subject: [PATCH 2/2] typo --- src/moonlink/src/storage/async_bitwriter.rs | 2 +- src/moonlink/src/table_handler/table_handler_state.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/moonlink/src/storage/async_bitwriter.rs b/src/moonlink/src/storage/async_bitwriter.rs index 0f021ccb6..92af76914 100644 --- a/src/moonlink/src/storage/async_bitwriter.rs +++ b/src/moonlink/src/storage/async_bitwriter.rs @@ -209,7 +209,7 @@ mod tests { use tokio::io::BufWriter; use tokio_bitstream_io::BigEndian; - /// Test [`write_bit`] intereface. + /// Test [`write_bit`] interface. #[tokio::test] #[rstest] #[case(0)] diff --git a/src/moonlink/src/table_handler/table_handler_state.rs b/src/moonlink/src/table_handler/table_handler_state.rs index 072858dd0..fdb211ea8 100644 --- a/src/moonlink/src/table_handler/table_handler_state.rs +++ b/src/moonlink/src/table_handler/table_handler_state.rs @@ -57,7 +57,7 @@ pub(crate) enum MaintenanceProcessStatus { InProcess, /// Maintenance result has been put into snapshot buffer, which will be persisted into iceberg later. ReadyToPersist, - /// Maintenance task result is being peristed into iceberg. + /// Maintenance task result is being persisted into iceberg. InPersist, }