From 7084df68aa738f720c94a593ec72935f5a2e356e Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Wed, 5 Mar 2025 06:26:31 -0500 Subject: [PATCH] Add punctuation --- aya/src/programs/uprobe.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aya/src/programs/uprobe.rs b/aya/src/programs/uprobe.rs index 4d914c5a..4bd37396 100644 --- a/aya/src/programs/uprobe.rs +++ b/aya/src/programs/uprobe.rs @@ -229,7 +229,7 @@ pub enum UProbeError { /// There was an error parsing `/etc/ld.so.cache`. #[error("error reading `{}` file", LD_SO_CACHE_FILE)] InvalidLdSoCache { - /// the original [`io::Error`] + /// the original [`io::Error`]. #[source] io_error: &'static io::Error, }, @@ -237,16 +237,16 @@ pub enum UProbeError { /// The target program could not be found. #[error("could not resolve uprobe target `{path}`")] InvalidTarget { - /// path to target + /// path to target. path: PathBuf, }, /// There was an error resolving the target symbol. #[error("error resolving symbol")] SymbolError { - /// symbol name + /// symbol name. symbol: String, - /// the original error + /// the original error. #[source] error: Box, },