File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -909,12 +909,12 @@ mod prim_usize { }
909909/// references with longer lifetimes can be freely coerced into references with shorter ones.
910910///
911911/// Reference equality by address, instead of comparing the values pointed to, is accomplished via
912- /// implicit reference-pointer coercion and raw pointer equality via [`ptr::eq`], while
912+ /// implicit reference-pointer coercion and raw pointer equality via [`ptr::eq`], while
913913/// [`PartialEq`] compares values.
914- ///
914+ ///
915915/// [`ptr::eq`]: ptr/fn.eq.html
916916/// [`PartialEq`]: cmp/trait.PartialEq.html
917- ///
917+ ///
918918/// ```
919919/// use std::ptr;
920920///
@@ -930,14 +930,14 @@ mod prim_usize { }
930930/// assert!(ptr::eq(five_ref, same_five_ref));
931931/// assert!(!ptr::eq(five_ref, other_five_ref));
932932/// ```
933- ///
933+ ///
934934/// For more information on how to use references, see [the book's section on "References and
935935/// Borrowing"][book-refs].
936936///
937937/// [book-refs]: ../book/second-edition/ch04-02-references-and-borrowing.html
938938///
939939/// # Trait implementations
940- ///
940+ ///
941941/// The following traits are implemented for all `&T`, regardless of the type of its referent:
942942///
943943/// * [`Copy`]
You can’t perform that action at this time.
0 commit comments