From b28b21968235b1c71960ced150c320826aae8980 Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Wed, 8 Mar 2023 03:04:12 +0100 Subject: [PATCH] Fix a typo --- src/linux/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/linux/mod.rs b/src/linux/mod.rs index 7e93de0..b2fc873 100644 --- a/src/linux/mod.rs +++ b/src/linux/mod.rs @@ -308,7 +308,7 @@ impl<'a> SharedLibraryTrait for SharedLibrary<'a> { } fn id(&self) -> Option { - // Search for `PT_NOTE` segments, containing auxilliary information. + // Search for `PT_NOTE` segments, containing auxiliary information. // Such segments contain a series of "notes" and one kind of note is // `NT_GNU_BUILD_ID`, whose payload contains a unique identifier // generated by the linker. Return the first one we find, if any.