From 097a5eb020aa716336ec1ea8477964a6860be469 Mon Sep 17 00:00:00 2001 From: Mike Cluck Date: Tue, 20 Nov 2018 14:37:51 -0700 Subject: [PATCH] Fixes #1115 by correcting the typo from into_iterator to into_iter --- src/trait/iter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/trait/iter.md b/src/trait/iter.md index 558f987999..91f65a53cc 100644 --- a/src/trait/iter.md +++ b/src/trait/iter.md @@ -7,7 +7,7 @@ which may be manually defined in an `impl` block or automatically defined (as in arrays and ranges). As a point of convenience for common situations, the `for` construct -turns some collections into iterators using the [`.into_iterator()`][intoiter] method. +turns some collections into iterators using the [`.into_iter()`][intoiter] method. ```rust,editable struct Fibonacci {