Skip to content

Bump crate-ci/typos from 1.31.2 to 1.32.0 #459

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ValidatePullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Spell Check Repo
uses: crate-ci/typos@v1.31.2
uses: crate-ci/typos@v1.32.0

# Gate PR merges on this specific "join-job" which requires all other
# jobs to run first. We need this job since we cannot gate on particular jobs
Expand Down
2 changes: 1 addition & 1 deletion src/hyperlight_host/src/sandbox/initialized_multi_use.rs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ where
///
/// The evolve function creates a new MultiUseCallContext which is then passed to a callback function allowing the
/// callback function to call guest functions as part of the evolve process, once the callback function is complete
/// the context is finished using a crate internal method that does not restore the prior state of the Sanbbox.
/// the context is finished using a crate internal method that does not restore the prior state of the Sandbox.
/// It then creates a mew memory snapshot on the snapshot stack and returns the MultiUseSandbox
#[instrument(err(Debug), skip_all, parent = Span::current(), level = "Trace")]
fn evolve(
Expand Down
2 changes: 1 addition & 1 deletion src/hyperlight_host/src/sandbox/uninitialized.rs
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ mod tests {
"test"
);

// There may be cases where a mutable reference to the captured variable is not required to be used outside the closue
// There may be cases where a mutable reference to the captured variable is not required to be used outside the closure
// e.g. if the function is writing to a file or a socket etc.

// writer as a FnMut closure mutating a captured variable but not trying to access the captured variable
Expand Down