From 9b1851b62b7574b0d69431a3b1cf923656c83fed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 03:11:41 +0000 Subject: [PATCH 1/2] Bump crate-ci/typos from 1.38.1 to 1.39.0 Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.38.1 to 1.39.0. - [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.38.1...v1.39.0) --- updated-dependencies: - dependency-name: crate-ci/typos dependency-version: 1.39.0 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 65b387cac..e4265686f 100644 --- a/.github/workflows/ValidatePullRequest.yml +++ b/.github/workflows/ValidatePullRequest.yml @@ -74,7 +74,7 @@ jobs: steps: - uses: actions/checkout@v5 - name: Spell Check Repo - uses: crate-ci/typos@v1.38.1 + uses: crate-ci/typos@v1.39.0 license-headers: name: check license headers From 652f3535493a3ac473ac1bdc8cd3190a9c981224 Mon Sep 17 00:00:00 2001 From: Simon Davies Date: Mon, 10 Nov 2025 13:24:07 +0000 Subject: [PATCH 2/2] Fix typos Signed-off-by: Simon Davies --- src/hyperlight_host/build.rs | 2 +- src/hyperlight_host/src/hypervisor/surrogate_process_manager.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hyperlight_host/build.rs b/src/hyperlight_host/build.rs index 414f784b4..f506b0cde 100644 --- a/src/hyperlight_host/build.rs +++ b/src/hyperlight_host/build.rs @@ -24,7 +24,7 @@ fn main() -> Result<()> { println!("cargo:rerun-if-changed=build.rs"); // Windows requires the hyperlight_surrogate.exe binary to be next to the executable running - // hyperlight. We are using rust-ebmed to include the binary in the hyperlight-host library + // hyperlight. We are using rust-embed to include the binary in the hyperlight-host library // and then extracting it at runtime why the surrogate process manager starts and needed pass // the location of the binary to the rust build. #[cfg(target_os = "windows")] diff --git a/src/hyperlight_host/src/hypervisor/surrogate_process_manager.rs b/src/hyperlight_host/src/hypervisor/surrogate_process_manager.rs index f805e94ad..c123eca1e 100644 --- a/src/hyperlight_host/src/hypervisor/surrogate_process_manager.rs +++ b/src/hyperlight_host/src/hypervisor/surrogate_process_manager.rs @@ -151,7 +151,7 @@ impl SurrogateProcessManager { // Allocate the memory by creating a view over the memory mapped file - // Use MapViewOfFile2 to map memoy into the surrogate process, the MapViewOfFile2 API is implemented in as an inline function in a windows header file + // Use MapViewOfFile2 to map memory into the surrogate process, the MapViewOfFile2 API is implemented in as an inline function in a windows header file // (see https://learn.microsoft.com/en-us/windows/win32/api/memoryapi/nf-memoryapi-mapviewoffile2#remarks) so we use the same API it uses in the header file here instead of // MapViewOfFile2 which does not exist in the rust crate (see https://github.com/microsoft/windows-rs/issues/2595) let allocated_address = unsafe {