From d02546a08646b347720c0eac1f004fb71abd8c05 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sat, 3 Mar 2018 14:38:20 -0800 Subject: [PATCH] Add a missing "that" (#26313) --- doc/src/manual/interfaces.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/manual/interfaces.md b/doc/src/manual/interfaces.md index 236641c254821..9dd11fe22ef4b 100644 --- a/doc/src/manual/interfaces.md +++ b/doc/src/manual/interfaces.md @@ -39,7 +39,7 @@ tests if there are any elements remaining, and `next(iter, state)`, which return the current element and an updated `state`. The `state` object can be anything, and is generally considered to be an implementation detail private to the iterable object. -Any object defines these three methods is iterable and can be used in the [many functions that rely upon iteration](@ref lib-collections-iteration). +Any object that defines these three methods is iterable and can be used in the [many functions that rely upon iteration](@ref lib-collections-iteration). It can also be used directly in a `for` loop since the syntax: ```julia