summaryrefslogtreecommitdiff
path: root/exercises/strings/strings4.rs
diff options
context:
space:
mode:
authorRobert Fry <inbox@robertfry.xyz>2023-05-29 18:39:08 +0100
committerRobert Fry <inbox@robertfry.xyz>2023-05-29 18:41:51 +0100
commit7eef5d15eef780f93e22b1b4e0185f7708219ea0 (patch)
tree6c1f97594a23ba1eb870435ba1e81a652241db04 /exercises/strings/strings4.rs
parent30291a3c253f08a4191cfd544ba36867612ebb7a (diff)
docs: cleanup the explanation paragraphs at the start of each exercise.
Diffstat (limited to 'exercises/strings/strings4.rs')
-rw-r--r--exercises/strings/strings4.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/exercises/strings/strings4.rs b/exercises/strings/strings4.rs
index c410b56..e8c54ac 100644
--- a/exercises/strings/strings4.rs
+++ b/exercises/strings/strings4.rs
@@ -1,9 +1,10 @@
// strings4.rs
-
+//
// Ok, here are a bunch of values-- some are `String`s, some are `&str`s. Your
// task is to call one of these two functions on each value depending on what
// you think each value is. That is, add either `string_slice` or `string`
// before the parentheses on each line. If you're right, it will compile!
+//
// No hints this time!
// I AM NOT DONE