about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libcore/ops/deref.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libcore/ops/deref.rs b/src/libcore/ops/deref.rs
index a2e7c44cb24..ea8dd820878 100644
--- a/src/libcore/ops/deref.rs
+++ b/src/libcore/ops/deref.rs
@@ -27,6 +27,7 @@
 /// # More on `Deref` coercion
 ///
 /// If `T` implements `Deref<Target = U>`, and `x` is a value of type `T`, then:
+///
 /// * In immutable contexts, `*x` on non-pointer types is equivalent to
 ///   `*Deref::deref(&x)`.
 /// * Values of type `&T` are coerced to values of type `&U`
@@ -113,6 +114,7 @@ impl<'a, T: ?Sized> Deref for &'a mut T {
 ///
 /// If `T` implements `DerefMut<Target = U>`, and `x` is a value of type `T`,
 /// then:
+///
 /// * In mutable contexts, `*x` on non-pointer types is equivalent to
 ///   `*Deref::deref(&x)`.
 /// * Values of type `&mut T` are coerced to values of type `&mut U`