File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ fn guest_call_benchmark(c: &mut Criterion) {
8282fn 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| {
Original file line number Diff line number Diff 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] ) ;
You can’t perform that action at this time.
0 commit comments