File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/hyperlight_host/benches Expand file tree Collapse file tree 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) {
104104fn sandbox_benchmark ( c : & mut Criterion ) {
105105 let mut group = c. benchmark_group ( "sandboxes" ) ;
106106
107- // Benchmarks the time to create a new uninintialized sandbox.
107+ // Benchmarks the time to create a new uninitialized sandbox.
108108 // Does **not** include the time to drop the sandbox.
109109 group. bench_function ( "create_uninitialized_sandbox" , |b| {
110110 b. iter_with_large_drop ( create_uninit_sandbox) ;
111111 } ) ;
112112
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.
114114 group. bench_function ( "create_uninitialized_sandbox_and_drop" , |b| {
115115 b. iter ( create_uninit_sandbox) ;
116116 } ) ;
You can’t perform that action at this time.
0 commit comments