about summary refs log tree commit diff
path: root/doc/tutorial-container.md
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2013-07-02 01:26:44 +1000
committerHuon Wilson <dbau.pp+github@gmail.com>2013-07-04 00:46:49 +1000
commiteee677564216a64f48ebaffa860e4062f2b2d264 (patch)
tree57cbad17c6c510a8a164dc88b757a1ba908454b6 /doc/tutorial-container.md
parent55f155521d2f604794d2ab1de2a8d439440af4a8 (diff)
downloadrust-eee677564216a64f48ebaffa860e4062f2b2d264.tar.gz
rust-eee677564216a64f48ebaffa860e4062f2b2d264.zip
Implement consuming iterators for ~[], remove vec::{consume, consume_reverse, map_consume}.
Diffstat (limited to 'doc/tutorial-container.md')
-rw-r--r--doc/tutorial-container.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial-container.md b/doc/tutorial-container.md
index 66bd0b9c131..5ed61d69301 100644
--- a/doc/tutorial-container.md
+++ b/doc/tutorial-container.md
@@ -108,7 +108,7 @@ impl Iterator<int> for ZeroStream {
 ## Container iterators
 
 Containers implement iteration over the contained elements by returning an
-iterator object. For example, vectors have four iterators available:
+iterator object. For example, vector slices have four iterators available:
 
 * `vector.iter()`, for immutable references to the elements
 * `vector.mut_iter()`, for mutable references to the elements