summaryrefslogtreecommitdiff
path: root/exercises/09_strings/strings3.rs
diff options
context:
space:
mode:
authorliv <mokou@fastmail.com>2024-03-15 14:40:19 +0100
committerGitHub <noreply@github.com>2024-03-15 14:40:19 +0100
commit244ec8fbf2d49406dcec2a34f907d0105dc64546 (patch)
tree1a353a06f0f8c7544d3566a28161e17f0ca2fac8 /exercises/09_strings/strings3.rs
parent57984ae9f39783829eaa4eec1140d27a7a97eed1 (diff)
parent098ff228d73d9f359e948712acb346240e85af05 (diff)
Merge pull request #1797 from 0Ahmed-0/typos
chore: fix a minor typo
Diffstat (limited to 'exercises/09_strings/strings3.rs')
-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!
???
}