Long lines

This commit is contained in:
Tim Chevalier 2012-12-28 13:35:15 -08:00
parent a75c0b3b32
commit cef153947d

View File

@ -1182,7 +1182,8 @@ pub fn reverse<T>(v: &[mut T]) {
* # Arguments
*
* * `v` - A vector, to be iterated over
* * `f` - A closure to do the iterating. Within this closure, return true to continue iterating, false to break.
* * `f` - A closure to do the iterating. Within this closure, return true to
* * continue iterating, false to break.
*
* # Examples
* ~~~