diff --git a/src/libcore/vec.rs b/src/libcore/vec.rs index fb951c12fd5..17181e62005 100644 --- a/src/libcore/vec.rs +++ b/src/libcore/vec.rs @@ -1182,7 +1182,8 @@ pub pure fn reversed(v: &[const T]) -> ~[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 * ~~~