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 @@ -515,14 +515,14 @@ pub trait MutableSlice<'a, T> {
515
515
fn mut_split ( self , pred: |& T |: ' a -> bool ) -> MutSplits <' a, T >;
516
516
517
517
/**
518
- * Returns an iterator over `size ` elements of the vector at a time.
519
- * The chunks are mutable and do not overlap. If `size ` does not divide the
520
- * length of the vector, then the last chunk will not have length
521
- * `size `.
518
+ * Returns an iterator over `chunk_size ` elements of the vector at a time.
519
+ * The chunks are mutable and do not overlap. If `chunk_size ` does
520
+ * not divide the length of the vector, then the last chunk will not
521
+ * have length `chunk_size `.
522
522
*
523
523
* # Failure
524
524
*
525
- * Fails if `size ` is 0.
525
+ * Fails if `chunk_size ` is 0.
526
526
*/
527
527
fn mut_chunks ( self , chunk_size : uint ) -> MutChunks < ' a , T > ;
528
528
You can’t perform that action at this time.
0 commit comments