diff options
| author | Niklas Anderson <nkanders@gmail.com> | 2019-08-09 07:36:39 -0700 |
|---|---|---|
| committer | Niklas Anderson <nkanders@gmail.com> | 2019-08-09 07:38:21 -0700 |
| commit | e3931718fb7a4355f6fb99a297157df9c03ba694 (patch) | |
| tree | 296c2c9d5f657d7d721a75142575f3148bb08699 /exercises | |
| parent | 4cde86643e12db162a66e62f23b78962986046ac (diff) | |
chore(iterators2): Add exercise instructions
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/standard_library_types/iterators2.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/standard_library_types/iterators2.rs b/exercises/standard_library_types/iterators2.rs index b25d0d6..168368f 100644 --- a/exercises/standard_library_types/iterators2.rs +++ b/exercises/standard_library_types/iterators2.rs @@ -1,7 +1,7 @@ // iterators2.rs // In this module, you'll learn some of unique advantages that iterators can offer // Step 1. Complete the `capitalize_first` function to pass the first two cases -// Step 2. Apply the `capitalize_first` function to a vector of strings, ensuring that it +// Step 2. Apply the `capitalize_first` function to a vector of strings, ensuring that it returns a vector of strings as well // Step 3. Apply the `capitalize_first` function again to a list, but try and ensure it returns a single string // As always, there are hints below! |
