From: Alexander Krotov Date: Tue, 13 Sep 2016 23:53:58 +0000 (+0300) Subject: s/that iterators/that iterates/ X-Git-Url: https://git.ralfj.de/rust-101.git/commitdiff_plain/9d1af570905e182beb0acb3585ec7eef7f64e09e 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