From d15d483a995255dc9c9de2aece3501219fc8a9f5 Mon Sep 17 00:00:00 2001 From: Simon Davies Date: Thu, 12 Dec 2024 21:54:21 +0000 Subject: [PATCH] fix spelling issues Signed-off-by: Simon Davies --- src/hyperlight_host/src/hypervisor/hypervisor_handler.rs | 2 +- .../src/hypervisor/windows_hypervisor_platform.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hyperlight_host/src/hypervisor/hypervisor_handler.rs b/src/hyperlight_host/src/hypervisor/hypervisor_handler.rs index b374f48e..18103d3f 100644 --- a/src/hyperlight_host/src/hypervisor/hypervisor_handler.rs +++ b/src/hyperlight_host/src/hypervisor/hypervisor_handler.rs @@ -595,7 +595,7 @@ impl HypervisorHandler { Err(_) => { // If we have timed out it may be that the handler thread returned an error before it sent a message, so rather than just timeout here // we will try and get the join handle for the thread and if it has finished check to see if it returned an error - // if it did then we will return that error, otherwise we wil return the timeout error + // if it did then we will return that error, otherwise we will return the timeout error match self .execution_variables .join_handle diff --git a/src/hyperlight_host/src/hypervisor/windows_hypervisor_platform.rs b/src/hyperlight_host/src/hypervisor/windows_hypervisor_platform.rs index e2e12882..b47cfe8d 100644 --- a/src/hyperlight_host/src/hypervisor/windows_hypervisor_platform.rs +++ b/src/hyperlight_host/src/hypervisor/windows_hypervisor_platform.rs @@ -132,7 +132,7 @@ impl VMPartition { } } -// This function dynmically loads the WHvMapGpaRange2 function from the winhvplatform.dll +// This function dynamically loads the WHvMapGpaRange2 function from the winhvplatform.dll // WHvMapGpaRange2 only available on Windows 11 or Windows Server 2022 and later // we do things this way to allow a user trying to load hyperlight on an older version of windows to // get an error message saying that hyperlight requires a newer version of windows, rather than just failing