From aca705cae9aab1296d6ae1b250788b6c6add5855 Mon Sep 17 00:00:00 2001 From: kud1ing Date: Fri, 10 Jan 2014 15:05:54 +0100 Subject: [PATCH] "As long an iterator" => "As long as an iterator" --- doc/guide-container.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guide-container.md b/doc/guide-container.md index ed350763fa3..ef37db53da7 100644 --- a/doc/guide-container.md +++ b/doc/guide-container.md @@ -130,7 +130,7 @@ A typical mutable container will implement at least `iter()`, `mut_iter()` and ### Freezing Unlike most other languages with external iterators, Rust has no *iterator -invalidation*. As long an iterator is still in scope, the compiler will prevent +invalidation*. As long as an iterator is still in scope, the compiler will prevent modification of the container through another handle. ~~~