From f0e5c14da914df1484945d929f1bc7602f63faad Mon Sep 17 00:00:00 2001
From: Gaurang Tandon <1gaurangtandon@gmail.com>
Date: Wed, 13 May 2020 15:06:17 +0530
Subject: [PATCH] fix(test2): name of type String and &str

---
 exercises/test2.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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!