From b5879161431583f1bac5ce5ee909194d30b44bbf Mon Sep 17 00:00:00 2001 From: eslopfer Date: Mon, 7 Nov 2022 18:52:35 +0000 Subject: [PATCH] docs(modify_letter): correct incorrect examples --- subjects/modify_letter/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/modify_letter/README.md b/subjects/modify_letter/README.md index ea37f987..b1d7cd47 100644 --- a/subjects/modify_letter/README.md +++ b/subjects/modify_letter/README.md @@ -30,7 +30,7 @@ use modify_letter::*modify_letter*; fn main() { println!("{}", remove_letter_sensitive("Joje jis mijssjing", 'j')); - println!("{}", remove_letter_insensitive("jaillA ais swiaAmmingA", 'A')); + println!("{}", remove_letter_insensitive("JaillA ais swiaAmmingA", 'A')); println!("{}", swap_letter_case("hEllo therE", 'e')); } ``` @@ -41,6 +41,6 @@ And its output $ cargo run Joe is missing Jill is swimming -Hello thERe +hello thEre $ ```