Skip to content

Commit 4337ddb

Browse files
committed
Rollup merge of rust-lang#22653 - tsion:master, r=alexcrichton
r? @steveklabnik
2 parents 0dc720b + 8db6465 commit 4337ddb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcollections/borrow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ impl<T> ToOwned for T where T: Clone {
132132
/// ```rust
133133
/// use std::borrow::Cow;
134134
///
135-
/// fn abs_all(input: &mut Cow<[int]>) {
135+
/// fn abs_all(input: &mut Cow<[i32]>) {
136136
/// for i in 0..input.len() {
137137
/// let v = input[i];
138138
/// if v < 0 {

0 commit comments

Comments
 (0)