From 52b81d900c908036dd8c524bcdf09c8f3635866a Mon Sep 17 00:00:00 2001 From: futile Date: Thu, 4 Dec 2025 04:15:51 +0000 Subject: [PATCH] process: update `Process` `base_address` doc a little --- src/process.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process.rs b/src/process.rs index e670495..e79ee4f 100644 --- a/src/process.rs +++ b/src/process.rs @@ -32,7 +32,7 @@ pub struct Process { pub name: String, /// the process id (th32ProcessID) pub id: u32, - /// the base address of the module with the same name as `name` (modBaseAddr) + /// the base address of the module with the name `name` (modBaseAddr) #[debug("0x{base_address:X}")] pub base_address: usize, /// the process handle (HANDLE)