summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaurang Tandon <1gaurangtandon@gmail.com>2020-05-13 16:08:14 +0530
committerGitHub <noreply@github.com>2020-05-13 12:38:14 +0200
commitd6c0a688e6a96f93ad60d540d4b326f342fc0d45 (patch)
treec6251c9b0b11006eeccff393e6e169e6a103d374
parent9f75554f2a30295996f03f0160b98c0458305502 (diff)
fix(test2): name of type String and &str (#394)
-rw-r--r--exercises/test2.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/test2.rs b/exercises/test2.rs
index d01606c..acdcb95 100644
--- a/exercises/test2.rs
+++ b/exercises/test2.rs
@@ -2,7 +2,7 @@
// This is a test for the following sections:
// - Strings
-// Ok, here are a bunch of values-- some are `Strings`, some are `&strs`. Your
+// 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!