about summary refs log tree commit diff
path: root/src/libcore/vec.rs
diff options
context:
space:
mode:
authorSean Moon <ssamoon@ucla.edu>2013-05-09 02:34:47 +0900
committerSean Moon <ssamoon@ucla.edu>2013-05-09 02:34:47 +0900
commitbd4ee7c7d2f00e8c41824fac7e5d155dff40c25f (patch)
tree6b48543d67f951fd3537a8624f2f203c5d910496 /src/libcore/vec.rs
parent37becd887e74383cafd2930a87dfbb8f19c5af15 (diff)
downloadrust-bd4ee7c7d2f00e8c41824fac7e5d155dff40c25f.tar.gz
rust-bd4ee7c7d2f00e8c41824fac7e5d155dff40c25f.zip
Fix typos
Diffstat (limited to 'src/libcore/vec.rs')
-rw-r--r--src/libcore/vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/vec.rs b/src/libcore/vec.rs
index 947146dee0e..bd8a1c8a156 100644
--- a/src/libcore/vec.rs
+++ b/src/libcore/vec.rs
@@ -219,7 +219,7 @@ pub fn build<A>(builder: &fn(push: &fn(v: A))) -> ~[A] {
  * # Arguments
  *
  * * size - An option, maybe containing initial size of the vector to reserve
- * * builder - A function that will construct the vector. It recieves
+ * * builder - A function that will construct the vector. It receives
  *             as an argument a function that will push an element
  *             onto the vector being constructed.
  */