Fix README

This commit is contained in:
JonOfUs 2023-10-24 15:53:46 +02:00
parent 9ca389c90a
commit 0b24f65ad7

View file

@ -9,7 +9,7 @@ use schmfy::schmfy;
fn improve_text(text: &str) {
let improved_text = schmfy(text);
println!("Old and boring: {}", text);
println!("Improved and great: {}", text);
println!("Improved and great: {}", improved_text);
}
```