From: Ralf Jung Date: Wed, 14 Sep 2016 07:11:02 +0000 (+0200) Subject: Merge pull request #15 from avkrotov/iterators X-Git-Url: https://git.ralfj.de/rust-101.git/commitdiff_plain/1eb60908c4cf9eb7e37f89c90440f7bea6367583?hp=a610bd0f496392b0a49640ea931302110570ed6d Merge pull request #15 from avkrotov/iterators s/that iterators/that iterates/ --- diff --git a/src/part09.rs b/src/part09.rs index 5916258..0ca4a43 100644 --- a/src/part09.rs +++ b/src/part09.rs @@ -89,7 +89,7 @@ fn print_digits_v2(b: &BigInt) { // **Exercise 09.1**: Write a testcase for the iterator, making sure it yields the corrects numbers. // -// **Exercise 09.2**: Write a function `iter_ldf` that iterators over the digits with the least-significant +// **Exercise 09.2**: Write a function `iter_ldf` that iterates over the digits with the least-significant // digits coming first. Write a testcase for it. // ## Iterator invalidation and lifetimes