summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorwojexe <21208490+wojexe@users.noreply.github.com>2022-07-16 17:28:13 +0200
committerGitHub <noreply@github.com>2022-07-16 17:28:13 +0200
commit55900c65cbcd88a8458ea5ba29e06c1897f344d5 (patch)
tree13b16406ac3b1b9726d80c32f6ef85598077d62d /exercises
parent5435b8084177941c8cf86e17a8fccaf1cef359a4 (diff)
fix: make strings3.rs comment wording more clear
fixes #1063
Diffstat (limited to 'exercises')
-rw-r--r--exercises/strings/strings3.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/strings/strings3.rs b/exercises/strings/strings3.rs
index 9e25d30..e2353ae 100644
--- a/exercises/strings/strings3.rs
+++ b/exercises/strings/strings3.rs
@@ -4,7 +4,7 @@
// I AM NOT DONE
fn trim_me(input: &str) -> String {
- // TODO: Remove whitespace from the end of a string!
+ // TODO: Remove whitespace from both ends of a string!
???
}