diff --git a/src/secret_string.rs b/src/secret_string.rs index 84af0e2da02..9e6be5653f0 100644 --- a/src/secret_string.rs +++ b/src/secret_string.rs @@ -2,7 +2,7 @@ use std::sync::Arc; /// A cheaply clonable, zeroed on drop, String. /// -/// This is a simple newtype of `Arc` that uses [`zeroize::Zeroize`] on on last drop to avoid +/// This is a simple newtype of `Arc` that uses [`zeroize::Zeroize`] on last drop to avoid /// keeping it around in memory. #[derive(Clone, serde::Deserialize, serde::Serialize)] pub struct SecretString(Arc);