From 306cd437c1a7154c32ee7ad0cdcbe8f76827743f Mon Sep 17 00:00:00 2001 From: Plotnus Date: Wed, 26 Jan 2022 20:08:38 -0700 Subject: [PATCH] Quiz 2 - missing space I believe a space is missing before the `--`. It is inconsistent with quiz3.rs P.S. thanks for these cool exercises. --- exercises/quiz2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/quiz2.rs b/exercises/quiz2.rs index de0dce95..1d513ae6 100644 --- a/exercises/quiz2.rs +++ b/exercises/quiz2.rs @@ -2,7 +2,7 @@ // This is a quiz for the following sections: // - Strings -// Ok, here are a bunch of values-- some are `String`s, some are `&str`s. 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!