From 1aa0023797c2e54e48a297c89a99adf6538b962c Mon Sep 17 00:00:00 2001 From: Davide Bertola <dade@dadeb.it> Date: Thu, 2 Jun 2022 20:49:52 +0200 Subject: [PATCH] code comment cleanup --- aya/src/programs/mod.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/aya/src/programs/mod.rs b/aya/src/programs/mod.rs index 1b9a2926..d589bfc6 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) }