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 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, }