diff options
| author | Dan Wilhelm <dan@danwilhelm.com> | 2020-04-29 19:11:54 -0700 |
|---|---|---|
| committer | Dan Wilhelm <dan@danwilhelm.com> | 2020-04-29 19:11:54 -0700 |
| commit | 959008284834bece0196a01e17ac69a7e3590116 (patch) | |
| tree | 17582bba8a5c78bef3e10a184c81078ed7a96a0a /info.toml | |
| parent | 32721bbc83953ad9cad7784cce645892d74aa778 (diff) | |
fix: update iterator and macro text for typos and clarity
- /macros/README.md: Typo "modules" => "macros"
- iterators2.py: Reduce line length to <90-char width.
- iterators4.py: Update 'fun' => 'challenge' as per PR#177
- rustlings hint iterators4: improve clarity
Diffstat (limited to 'info.toml')
| -rw-r--r-- | info.toml | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -640,10 +640,10 @@ name = "iterators4" path = "exercises/standard_library_types/iterators4.rs" mode = "test" hint = """ -In an imperative language you might write a for loop to iterate through -multiply the values into a mutable variable. Or you might write code more -functionally with recursion and a match clause. But you can also use ranges -and iterators to solve this in rust.""" +In an imperative language, you might write a for loop that updates +a mutable variable. Or, you might write code utilizing recursion +and a match clause. In Rust you can take another functional +approach, computing the factorial elegantly with ranges and iterators.""" # TRAITS |
