Rollup merge of #22653 - tsion:master, r=alexcrichton

r? @steveklabnik
This commit is contained in:
Manish Goregaokar 2015-02-24 07:13:14 +05:30
commit 4337ddb62d

View file

@ -132,7 +132,7 @@ impl<T> ToOwned for T where T: Clone {
/// ```rust
/// use std::borrow::Cow;
///
/// fn abs_all(input: &mut Cow<[int]>) {
/// fn abs_all(input: &mut Cow<[i32]>) {
/// for i in 0..input.len() {
/// let v = input[i];
/// if v < 0 {