From f3245e9aa51f752d7392dfe18bb45795c7a7bd28 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Sep 2025 03:11:33 +0000 Subject: [PATCH 1/2] Bump crate-ci/typos from 1.35.6 to 1.36.2 Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.35.6 to 1.36.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.35.6...v1.36.2) --- updated-dependencies: - dependency-name: crate-ci/typos dependency-version: 1.36.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/ValidatePullRequest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ValidatePullRequest.yml b/.github/workflows/ValidatePullRequest.yml index fa718e9f3..e6b07ddac 100644 --- a/.github/workflows/ValidatePullRequest.yml +++ b/.github/workflows/ValidatePullRequest.yml @@ -65,7 +65,7 @@ jobs: steps: - uses: actions/checkout@v5 - name: Spell Check Repo - uses: crate-ci/typos@v1.35.6 + uses: crate-ci/typos@v1.36.2 license-headers: name: check license headers From 959a3816f58e2018857bbf934d189257084e869f Mon Sep 17 00:00:00 2001 From: Simon Davies Date: Mon, 8 Sep 2025 10:00:09 +0100 Subject: [PATCH 2/2] Fix typo Signed-off-by: Simon Davies --- src/hyperlight_guest_tracing/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hyperlight_guest_tracing/src/lib.rs b/src/hyperlight_guest_tracing/src/lib.rs index 92902e3da..b89f88e9b 100644 --- a/src/hyperlight_guest_tracing/src/lib.rs +++ b/src/hyperlight_guest_tracing/src/lib.rs @@ -326,7 +326,7 @@ mod trace { // Flush the buffer buffer.flush(); - // After flushing, the entryes should still be intact, we don't clear them + // After flushing, the entries should still be intact, we don't clear them assert_eq!(buffer.write_index, 0); assert_eq!(buffer.entries[0].msg_len, msg.len()); assert_eq!(&buffer.entries[0].msg[..msg.len()], msg.as_bytes());