diff --git a/aya/src/programs/mod.rs b/aya/src/programs/mod.rs index 1b9a29265..d589bfc68 100644 --- a/aya/src/programs/mod.rs +++ b/aya/src/programs/mod.rs @@ -558,8 +558,9 @@ macro_rules! impl_program_unload { impl $struct_name { /// Unloads the program from the kernel. /// - /// Links will be detached before unloading the program. - /// Note that OwnedLinks you obtained using ´forget_link()´ will not be detached. + /// Links will be detached before unloading the program. Note + /// that owned links obtained using `forget_link()` will not be + /// detached. pub fn unload(&mut self) -> Result<(), ProgramError> { unload_program(&mut self.data) }