From 2217cf1af27d7980aba9deca4e78165cab5e80fc Mon Sep 17 00:00:00 2001 From: Jake Worth Date: Fri, 4 Dec 2015 12:32:36 -0500 Subject: [PATCH] Fix typo --- src/doc/book/loops.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/book/loops.md b/src/doc/book/loops.md index 3e12e86da23f..68bb49d2c296 100644 --- a/src/doc/book/loops.md +++ b/src/doc/book/loops.md @@ -80,7 +80,7 @@ for var in expression { } ``` -The expression is an item can can be converted into an [iterator] using +The expression is an item that can be converted into an [iterator] using [`IntoIterator`]. The iterator gives back a series of elements. Each element is one iteration of the loop. That value is then bound to the name `var`, which is valid for the loop body. Once the body is over, the next value is fetched from