Skip to content

Commit c725c8b

Browse files
Bump crate-ci/typos from 1.33.1 to 1.34.0 (#681)
* Fix typos Signed-off-by: Lucy Menon <[email protected]> * Bump crate-ci/typos from 1.33.1 to 1.34.0 Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.33.1 to 1.34.0. - [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.33.1...v1.34.0) --- updated-dependencies: - dependency-name: crate-ci/typos dependency-version: 1.34.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> --------- Signed-off-by: Lucy Menon <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Lucy Menon <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 3dd58b3 commit c725c8b

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
@@ -65,7 +65,7 @@ jobs:
6565
steps:
6666
- uses: actions/checkout@v4
6767
- name: Spell Check Repo
68-
uses: crate-ci/typos@v1.33.1
68+
uses: crate-ci/typos@v1.34.0
6969

7070
license-headers:
7171
name: check license headers

src/hyperlight_host/benches/benchmarks.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ fn guest_call_benchmark(c: &mut Criterion) {
8282
fn guest_call_benchmark_large_param(c: &mut Criterion) {
8383
let mut group = c.benchmark_group("guest_functions_with_large_parameters");
8484
#[cfg(target_os = "windows")]
85-
group.sample_size(10); // This benchark is very slow on Windows, so we reduce the sample size to avoid long test runs.
85+
group.sample_size(10); // This benchmark is very slow on Windows, so we reduce the sample size to avoid long test runs.
8686

8787
// This benchmark includes time to first clone a vector and string, so it is not a "pure' benchmark of the guest call, but it's still useful
8888
group.bench_function("guest_call_with_large_parameters", |b| {

src/hyperlight_host/src/seccomp/guest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ pub(crate) fn get_seccomp_filter_for_host_function_worker_thread(
120120
)?
121121
.try_into()?;
122122

123-
// If `openat` is an exclicitly allowed syscall, we shouldn't return the filter that forces it to return EACCES.
123+
// If `openat` is an explicitly allowed syscall, we shouldn't return the filter that forces it to return EACCES.
124124
if let Some(extra_syscalls) = extra_allowed_syscalls {
125125
if extra_syscalls.contains(&libc::SYS_openat) {
126126
return Ok(vec![allowlist]);

0 commit comments

Comments
 (0)