From d0751b6535f0f5ecd5917d88e9b2d75bf563783b Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Mon, 14 Jan 2013 09:45:51 -0500 Subject: [PATCH] spelling fixes for iter module docstrings --- src/libcore/iter.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs index 4ea845543d1ac..658e250bc36b4 100644 --- a/src/libcore/iter.rs +++ b/src/libcore/iter.rs @@ -80,7 +80,7 @@ pub trait Buildable { * # Arguments * * * size - A hint for an initial size of the sequence - * * builder - A function that will construct the sequence. It recieves + * * builder - A function that will construct the sequence. It receives * as an argument a function that will push an element * onto the sequence being constructed. */ @@ -256,7 +256,7 @@ pub pure fn find>(self: &IA, * * # Arguments * - * * builder - A function that will construct the sequence. It recieves + * * builder - A function that will construct the sequence. It receives * as an argument a function that will push an element * onto the sequence being constructed. */ @@ -275,7 +275,7 @@ pub pure fn build>(builder: fn(push: pure fn(A))) * * * size - An option, maybe containing initial size of the sequence * to reserve - * * builder - A function that will construct the sequence. It recieves + * * builder - A function that will construct the sequence. It receives * as an argument a function that will push an element * onto the sequence being constructed. */