File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -909,12 +909,12 @@ mod prim_usize { }
909
909
/// references with longer lifetimes can be freely coerced into references with shorter ones.
910
910
///
911
911
/// 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
913
913
/// [`PartialEq`] compares values.
914
- ///
914
+ ///
915
915
/// [`ptr::eq`]: ptr/fn.eq.html
916
916
/// [`PartialEq`]: cmp/trait.PartialEq.html
917
- ///
917
+ ///
918
918
/// ```
919
919
/// use std::ptr;
920
920
///
@@ -930,14 +930,14 @@ mod prim_usize { }
930
930
/// assert!(ptr::eq(five_ref, same_five_ref));
931
931
/// assert!(!ptr::eq(five_ref, other_five_ref));
932
932
/// ```
933
- ///
933
+ ///
934
934
/// For more information on how to use references, see [the book's section on "References and
935
935
/// Borrowing"][book-refs].
936
936
///
937
937
/// [book-refs]: ../book/second-edition/ch04-02-references-and-borrowing.html
938
938
///
939
939
/// # Trait implementations
940
- ///
940
+ ///
941
941
/// The following traits are implemented for all `&T`, regardless of the type of its referent:
942
942
///
943
943
/// * [`Copy`]
You can’t perform that action at this time.
0 commit comments