From 334c4761a295e0d0d1b595ee639d59a4cf432fb6 Mon Sep 17 00:00:00 2001 From: futile Date: Wed, 3 Dec 2025 13:25:18 +0000 Subject: [PATCH] process: clarify that `module` is case-sensitive --- src/process.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/process.rs b/src/process.rs index d742606..f28c914 100644 --- a/src/process.rs +++ b/src/process.rs @@ -67,6 +67,8 @@ impl Process { } /// get a `Module` of a `Process` by name + /// + /// note: the casing matters (don't search for `shell32.dll` if you want `SHELL32.dll`) pub fn module(&self, name: &str) -> Result { let Some(snapshot) = snapshot::ModuleSnapshot::get_modules(self.id)? .into_iter()