This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Commit 7ab3f32 authored and committed Feb 18, 2025 · 1 / 1
1 parent 872df06 commit 7ab3f32 Copy full SHA for 7ab3f32
File tree 1 file changed +2
-2
lines changed
src/hyperlight_host/benches
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -104,13 +104,13 @@ fn guest_call_benchmark(c: &mut Criterion) {
104
104
fn sandbox_benchmark ( c : & mut Criterion ) {
105
105
let mut group = c. benchmark_group ( "sandboxes" ) ;
106
106
107
- // Benchmarks the time to create a new uninintialized sandbox.
107
+ // Benchmarks the time to create a new uninitialized sandbox.
108
108
// Does **not** include the time to drop the sandbox.
109
109
group. bench_function ( "create_uninitialized_sandbox" , |b| {
110
110
b. iter_with_large_drop ( create_uninit_sandbox) ;
111
111
} ) ;
112
112
113
- // Benchmarks the time to create a new uninintialized sandbox and drop it.
113
+ // Benchmarks the time to create a new uninitialized sandbox and drop it.
114
114
group. bench_function ( "create_uninitialized_sandbox_and_drop" , |b| {
115
115
b. iter ( create_uninit_sandbox) ;
116
116
} ) ;
You can’t perform that action at this time.
0 commit comments