Skip to content

Commit c4ea700

Browse files
committed
Remove trailing white space.
1 parent cba5f6b commit c4ea700

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libcore/borrow.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,12 @@
100100
///
101101
/// Instead, `get` relies on `Q`’s implementation of `Hash` and uses `Borrow`
102102
/// to indicate that `K`’s implementation of `Hash` must produce the same
103-
/// result as `Q`’s by demanding that `K: Borrow<Q>`.
103+
/// result as `Q`’s by demanding that `K: Borrow<Q>`.
104104
///
105105
/// As a consequence, the hash map breaks if a `K` wrapping a `Q` value
106106
/// produces a different hash than `Q`. For instance, image you have a
107107
/// type that wraps a string but compares ASCII letters case-insensitive:
108-
///
108+
///
109109
/// ```
110110
/// use std::ascii::AsciiExt;
111111
///
@@ -148,7 +148,7 @@
148148
/// [`HashMap`]: ../collections/struct.HashMap.html
149149
/// [`String`]: ../string/struct.String.html
150150
/// [`str`]: ../primitive.str.html
151-
///
151+
///
152152
#[stable(feature = "rust1", since = "1.0.0")]
153153
pub trait Borrow<Borrowed: ?Sized> {
154154
/// Immutably borrows from an owned value.

0 commit comments

Comments
 (0)