diff options
| author | Graydon Hoare <graydon@pobox.com> | 2013-01-14 12:48:14 -0800 |
|---|---|---|
| committer | Graydon Hoare <graydon@pobox.com> | 2013-01-14 12:48:14 -0800 |
| commit | 76bcfe8025249c787cba04f2fb035f4915db0a36 (patch) | |
| tree | cbb46b3478b400ac7a1cc0bffe27869957de839c | |
| parent | 3d5418789064fdb463e872a4e651af1c628a3650 (diff) | |
| parent | d0751b6535f0f5ecd5917d88e9b2d75bf563783b (diff) | |
| download | rust-76bcfe8025249c787cba04f2fb035f4915db0a36.tar.gz rust-76bcfe8025249c787cba04f2fb035f4915db0a36.zip | |
Merge pull request #4486 from thestinger/spelling
spelling fixes for iter module docstrings
| -rw-r--r-- | src/libcore/iter.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs index 4ea845543d1..658e250bc36 100644 --- a/src/libcore/iter.rs +++ b/src/libcore/iter.rs @@ -80,7 +80,7 @@ pub trait Buildable<A> { * # 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<A: Copy,IA:BaseIter<A>>(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<A,B: Buildable<A>>(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. */ |
