diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-24 07:13:14 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-24 12:08:00 +0530 |
| commit | 4337ddb62db0296dbc47ded1b263a888c9a485eb (patch) | |
| tree | a59dd7bc709765d991ab7fee770b4919447440b8 | |
| parent | 0dc720b479de42465229775ce4478c01b6ac4aea (diff) | |
| parent | 8db6465e06569ef1434bc6c87c401020462fc351 (diff) | |
| download | rust-4337ddb62db0296dbc47ded1b263a888c9a485eb.tar.gz rust-4337ddb62db0296dbc47ded1b263a888c9a485eb.zip | |
Rollup merge of #22653 - tsion:master, r=alexcrichton
r? @steveklabnik
| -rw-r--r-- | src/libcollections/borrow.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/borrow.rs b/src/libcollections/borrow.rs index e92f38741c9..f3c44a84ee5 100644 --- a/src/libcollections/borrow.rs +++ b/src/libcollections/borrow.rs @@ -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 { |
