diff options
| author | Simon Sapin <simon.sapin@exyr.org> | 2016-03-07 16:27:21 +0100 |
|---|---|---|
| committer | Simon Sapin <simon.sapin@exyr.org> | 2016-03-07 16:27:21 +0100 |
| commit | 57b3cfde0dd43e5e4d4eea2cd6bce16f7b6622d5 (patch) | |
| tree | 892e6aaeaa5c1d211187fa75de3a4e444c2a2b10 /src/libcore | |
| parent | e387c8870017a9fb014fb18e249395a844f5d0e6 (diff) | |
| download | rust-57b3cfde0dd43e5e4d4eea2cd6bce16f7b6622d5.tar.gz rust-57b3cfde0dd43e5e4d4eea2cd6bce16f7b6622d5.zip | |
Fix some line lengths
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/cell.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libcore/cell.rs b/src/libcore/cell.rs index 8f6557079f1..fdd2e3a1784 100644 --- a/src/libcore/cell.rs +++ b/src/libcore/cell.rs @@ -625,7 +625,8 @@ impl<'b, T: ?Sized> Ref<'b, T> { /// ``` #[unstable(feature = "cell_extras", reason = "recently added", issue = "27746")] - #[rustc_deprecated(since = "1.8.0", reason = "can be built on `Ref::map`: https://crates.io/crates/ref_filter_map")] + #[rustc_deprecated(since = "1.8.0", reason = "can be built on `Ref::map`: \ + https://crates.io/crates/ref_filter_map")] #[inline] pub fn filter_map<U: ?Sized, F>(orig: Ref<'b, T>, f: F) -> Option<Ref<'b, U>> where F: FnOnce(&T) -> Option<&U> @@ -700,7 +701,8 @@ impl<'b, T: ?Sized> RefMut<'b, T> { /// ``` #[unstable(feature = "cell_extras", reason = "recently added", issue = "27746")] - #[rustc_deprecated(since = "1.8.0", reason = "can be built on `RefMut::map`: https://crates.io/crates/ref_filter_map")] + #[rustc_deprecated(since = "1.8.0", reason = "can be built on `RefMut::map`: \ + https://crates.io/crates/ref_filter_map")] #[inline] pub fn filter_map<U: ?Sized, F>(orig: RefMut<'b, T>, f: F) -> Option<RefMut<'b, U>> where F: FnOnce(&mut T) -> Option<&mut U> |
