Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7ab3f32

Browse files
simongdaviesmyadav00
authored andcommittedFeb 18, 2025·
fix typos (#268)
Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com> Signed-off-by: myadav <myadav@microsoft.com>
1 parent 872df06 commit 7ab3f32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/hyperlight_host/benches/benchmarks.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,13 @@ fn guest_call_benchmark(c: &mut Criterion) {
104104
fn 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
});

0 commit comments

Comments
 (0)
Please sign in to comment.