From 77d26b1fb4dfa29ed46bca6ed32a5860108bf057 Mon Sep 17 00:00:00 2001 From: Mykhailo Lohachov Date: Tue, 10 Dec 2024 17:29:14 +0900 Subject: [PATCH] fix: Update crates/iroha/src/secrecy.rs Co-authored-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com> Signed-off-by: Mykhailo Lohachov --- crates/iroha/src/secrecy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/iroha/src/secrecy.rs b/crates/iroha/src/secrecy.rs index ed6f5f1049..0803623331 100644 --- a/crates/iroha/src/secrecy.rs +++ b/crates/iroha/src/secrecy.rs @@ -4,7 +4,7 @@ use std::fmt; use derive_more::Constructor; use serde::{Deserialize, Serialize, Serializer}; -/// SecretString epresents a sensitive secret string. +/// String sensitive to printing and serialization #[derive(Clone, Deserialize, Constructor)] pub struct SecretString(String);