From 14802107fd76d91cfa25134ee54e90d62ee3d6f5 Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Fri, 24 May 2024 12:06:21 -0700 Subject: [PATCH] Update lib/vm/src/mmap.rs --- lib/vm/src/mmap.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vm/src/mmap.rs b/lib/vm/src/mmap.rs index 0965c9e1fda..c6d82f88308 100644 --- a/lib/vm/src/mmap.rs +++ b/lib/vm/src/mmap.rs @@ -83,7 +83,7 @@ impl Mmap { return Ok(Self::new()); } - // If there is a backing file, reise the file so that its at least + // If there is a backing file, resize the file so that its at least // `mapping_size` bytes. if let Some(backing_file) = &mut backing_file { let len = backing_file.metadata().map_err(|e| e.to_string())?.len() as usize;