From cef153947d1e4d3ea76311637e0947da238bc72c Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Fri, 28 Dec 2012 13:35:15 -0800 Subject: [PATCH] Long lines --- src/libcore/vec.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 fn reverse(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 * ~~~