File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -520,14 +520,14 @@ pub trait MutableSlice<'a, T> {
520
520
fn mut_split ( self , pred: |& T |: ' a -> bool ) -> MutSplits <' a, T >;
521
521
522
522
/**
523
- * Returns an iterator over `size ` elements of the vector at a time.
524
- * The chunks are mutable and do not overlap. If `size ` does not divide the
525
- * length of the vector, then the last chunk will not have length
526
- * `size `.
523
+ * Returns an iterator over `chunk_size ` elements of the vector at a time.
524
+ * The chunks are mutable and do not overlap. If `chunk_size ` does
525
+ * not divide the length of the vector, then the last chunk will not
526
+ * have length `chunk_size `.
527
527
*
528
528
* # Failure
529
529
*
530
- * Fails if `size ` is 0.
530
+ * Fails if `chunk_size ` is 0.
531
531
*/
532
532
fn mut_chunks ( self , chunk_size : uint ) -> MutChunks < ' a , T > ;
533
533
You can’t perform that action at this time.
0 commit comments