about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-01-10 07:06:32 -0800
committerbors <bors@rust-lang.org>2014-01-10 07:06:32 -0800
commit7fe8692d3347c4eabfad2fbbd8a336069102c63f (patch)
tree9e30430341cffa361d66a0d1b98734ea0f2b8ca6
parent423dd84300a7232f41b799ffdab7a1fc97ce59da (diff)
parentaca705cae9aab1296d6ae1b250788b6c6add5855 (diff)
downloadrust-7fe8692d3347c4eabfad2fbbd8a336069102c63f.tar.gz
rust-7fe8692d3347c4eabfad2fbbd8a336069102c63f.zip
auto merge of #11451 : kud1ing/rust/patch-1, r=cmr
-rw-r--r--doc/guide-container.md2
1 files changed, 1 insertions, 1 deletions
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.
 
 ~~~