Skip to content

Commit 08fd006

Browse files
Bump crate-ci/typos from 1.38.1 to 1.39.0 (#1001)
1 parent 33f90e6 commit 08fd006

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ValidatePullRequest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
steps:
7575
- uses: actions/checkout@v5
7676
- name: Spell Check Repo
77-
uses: crate-ci/typos@v1.38.1
77+
uses: crate-ci/typos@v1.39.0
7878

7979
license-headers:
8080
name: check license headers

src/hyperlight_host/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fn main() -> Result<()> {
2424
println!("cargo:rerun-if-changed=build.rs");
2525

2626
// Windows requires the hyperlight_surrogate.exe binary to be next to the executable running
27-
// hyperlight. We are using rust-ebmed to include the binary in the hyperlight-host library
27+
// hyperlight. We are using rust-embed to include the binary in the hyperlight-host library
2828
// and then extracting it at runtime why the surrogate process manager starts and needed pass
2929
// the location of the binary to the rust build.
3030
#[cfg(target_os = "windows")]

src/hyperlight_host/src/hypervisor/surrogate_process_manager.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ impl SurrogateProcessManager {
151151

152152
// Allocate the memory by creating a view over the memory mapped file
153153

154-
// Use MapViewOfFile2 to map memoy into the surrogate process, the MapViewOfFile2 API is implemented in as an inline function in a windows header file
154+
// Use MapViewOfFile2 to map memory into the surrogate process, the MapViewOfFile2 API is implemented in as an inline function in a windows header file
155155
// (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
156156
// MapViewOfFile2 which does not exist in the rust crate (see https://github.com/microsoft/windows-rs/issues/2595)
157157
let allocated_address = unsafe {

0 commit comments

Comments
 (0)