Skip to content

Commit d0751b6

Browse files
committed
spelling fixes for iter module docstrings
1 parent 3d54187 commit d0751b6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libcore/iter.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ pub trait Buildable<A> {
8080
* # Arguments
8181
*
8282
* * size - A hint for an initial size of the sequence
83-
* * builder - A function that will construct the sequence. It recieves
83+
* * builder - A function that will construct the sequence. It receives
8484
* as an argument a function that will push an element
8585
* onto the sequence being constructed.
8686
*/
@@ -256,7 +256,7 @@ pub pure fn find<A: Copy,IA:BaseIter<A>>(self: &IA,
256256
*
257257
* # Arguments
258258
*
259-
* * builder - A function that will construct the sequence. It recieves
259+
* * builder - A function that will construct the sequence. It receives
260260
* as an argument a function that will push an element
261261
* onto the sequence being constructed.
262262
*/
@@ -275,7 +275,7 @@ pub pure fn build<A,B: Buildable<A>>(builder: fn(push: pure fn(A)))
275275
*
276276
* * size - An option, maybe containing initial size of the sequence
277277
* to reserve
278-
* * builder - A function that will construct the sequence. It recieves
278+
* * builder - A function that will construct the sequence. It receives
279279
* as an argument a function that will push an element
280280
* onto the sequence being constructed.
281281
*/

0 commit comments

Comments
 (0)