Skip to content

Commit a4691a8

Browse files
Bump crate-ci/typos from 1.30.3 to 1.31.1 (#387)
* Bump crate-ci/typos from 1.30.3 to 1.31.1 Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.30.3 to 1.31.1. - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](crate-ci/typos@v1.30.3...v1.31.1) --- updated-dependencies: - dependency-name: crate-ci/typos dependency-version: 1.31.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * fix spelling errors Signed-off-by: Simon Davies <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Simon Davies <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Simon Davies <[email protected]>
1 parent 576187f commit a4691a8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ValidatePullRequest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
steps:
6666
- uses: actions/checkout@v4
6767
- name: Spell Check Repo
68-
uses: crate-ci/typos@v1.30.3
68+
uses: crate-ci/typos@v1.31.1
6969

7070
# Gate PR merges on this specific "join-job" which requires all other
7171
# jobs to run first. We need this job since we cannot gate on particular jobs

src/hyperlight_host/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fn main() -> Result<()> {
3333
// Build hyperlight_surrogate and
3434
// Set $HYPERLIGHT_SURROGATE_DIR env var during rust build so we can
3535
// use it with RustEmbed to specify where hyperlight_surrogate.exe is
36-
// to include as an embedded resource in the surrograte_process_manager
36+
// to include as an embedded resource in the surrogate_process_manager
3737

3838
// We need to copy/rename the source for hyperlight surrogate into a
3939
// temp directory because we cannot include a file name `Cargo.toml`

src/hyperlight_host/src/sandbox/uninitialized.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ mod tests {
335335
use crossbeam_queue::ArrayQueue;
336336
use hyperlight_common::flatbuffer_wrappers::function_types::{ParameterValue, ReturnValue};
337337
use hyperlight_testing::logger::{Logger as TestLogger, LOGGER as TEST_LOGGER};
338-
use hyperlight_testing::tracing_subscriber::TracingSubscriber as TestSubcriber;
338+
use hyperlight_testing::tracing_subscriber::TracingSubscriber as TestSubscriber;
339339
use hyperlight_testing::{simple_guest_as_string, simple_guest_exe_as_string};
340340
use log::Level;
341341
use serde_json::{Map, Value};
@@ -910,7 +910,7 @@ mod tests {
910910
fn test_trace_trace() {
911911
TestLogger::initialize_log_tracer();
912912
rebuild_interest_cache();
913-
let subscriber = TestSubcriber::new(tracing_level::TRACE);
913+
let subscriber = TestSubscriber::new(tracing_level::TRACE);
914914
tracing::subscriber::with_default(subscriber.clone(), || {
915915
let correlation_id = Uuid::new_v4().as_hyphenated().to_string();
916916
let span = tracing::error_span!("test_trace_logs", correlation_id).entered();

0 commit comments

Comments
 (0)