summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAhmed <111569638+0Ahmed-0@users.noreply.github.com>2023-12-04 22:35:53 +0200
committerAhmed <111569638+0Ahmed-0@users.noreply.github.com>2024-03-13 00:39:45 +0000
commit098ff228d73d9f359e948712acb346240e85af05 (patch)
tree729dfbcb056ac6b868673d7a24a59d4a78e847fc
parent88b583f2bbf4d7a668db6d83964af5470c93e516 (diff)
chore: fix a minor typo
-rw-r--r--exercises/09_strings/strings3.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/09_strings/strings3.rs b/exercises/09_strings/strings3.rs
index b29f932..384e7ce 100644
--- a/exercises/09_strings/strings3.rs
+++ b/exercises/09_strings/strings3.rs
@@ -11,7 +11,7 @@ fn trim_me(input: &str) -> String {
}
fn compose_me(input: &str) -> String {
- // TODO: Add " world!" to the string! There's multiple ways to do this!
+ // TODO: Add " world!" to the string! There are multiple ways to do this!
???
}