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.
This commit is contained in:
Plotnus 2022-01-26 20:08:38 -07:00 committed by GitHub
parent 5002c54ffb
commit 306cd437c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
// This is a quiz for the following sections: // This is a quiz for the following sections:
// - Strings // - 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 // 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` // 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! // before the parentheses on each line. If you're right, it will compile!