From 878d2de8c06c909d48c41951ddbfcad55cda5956 Mon Sep 17 00:00:00 2001 From: William Date: Thu, 22 Dec 2022 11:44:12 +0000 Subject: [PATCH] Better comment Co-authored-by: MaeIsBad <26093674+MaeIsBad@users.noreply.github.com> --- examples/manual_builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/manual_builder.rs b/examples/manual_builder.rs index f03f6a27..7c851727 100644 --- a/examples/manual_builder.rs +++ b/examples/manual_builder.rs @@ -13,7 +13,7 @@ fn main() { assert_eq!(redactor.redact("Hello, world!".to_string()), "HelXX, XXrld!"); // Or, we can redact a `String` in-place, which is slightly more efficient, - // and we can also chain multiple redactions together: + // and allows us to chain multiple redactions together: let mut hello = "Hello, world!".to_string(); let mut goodbye = "Goodbye, world!".to_string(); redactor.redact_in_place(&mut hello).redact_in_place(&mut goodbye);