From 5aa81c70a1559931b2ff4573bf0f55adf1562eb3 Mon Sep 17 00:00:00 2001 From: Benjamin Swerdlow Date: Tue, 16 Dec 2025 15:29:54 -0800 Subject: [PATCH] Fix typo in comment for Unmap event --- src/event.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/event.rs b/src/event.rs index bdc3560..225c025 100644 --- a/src/event.rs +++ b/src/event.rs @@ -71,7 +71,7 @@ pub enum Event { /// The end address of the memory range that was freed. end: *mut c_void, }, - /// Generated when the faulting process unmaps a meomry range, either explicitly using + /// Generated when the faulting process unmaps a memory range, either explicitly using /// `munmap(2)` or implicitly during `mmap(2)` or `mremap(2)`. Unmap { /// The start address of the memory range that was unmapped.