File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3766,7 +3766,7 @@ impl<T> fmt::Debug for AtomicPtr<T> {
37663766#[ stable( feature = "atomic_pointer" , since = "1.24.0" ) ]
37673767impl < T > fmt:: Pointer for AtomicPtr < T > {
37683768 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
3769- fmt:: Pointer :: fmt ( & self . load ( Ordering :: SeqCst ) , f)
3769+ fmt:: Pointer :: fmt ( & self . load ( Ordering :: Relaxed ) , f)
37703770 }
37713771}
37723772
Original file line number Diff line number Diff line change @@ -842,7 +842,7 @@ impl Duration {
842842
843843 /// Returns the number of seconds contained by this `Duration` as `f64`.
844844 ///
845- /// The returned value does include the fractional (nanosecond) part of the duration.
845+ /// The returned value includes the fractional (nanosecond) part of the duration.
846846 ///
847847 /// # Examples
848848 /// ```
@@ -861,7 +861,7 @@ impl Duration {
861861
862862 /// Returns the number of seconds contained by this `Duration` as `f32`.
863863 ///
864- /// The returned value does include the fractional (nanosecond) part of the duration.
864+ /// The returned value includes the fractional (nanosecond) part of the duration.
865865 ///
866866 /// # Examples
867867 /// ```
@@ -880,7 +880,7 @@ impl Duration {
880880
881881 /// Returns the number of milliseconds contained by this `Duration` as `f64`.
882882 ///
883- /// The returned value does include the fractional (nanosecond) part of the duration.
883+ /// The returned value includes the fractional (nanosecond) part of the duration.
884884 ///
885885 /// # Examples
886886 /// ```
@@ -901,7 +901,7 @@ impl Duration {
901901
902902 /// Returns the number of milliseconds contained by this `Duration` as `f32`.
903903 ///
904- /// The returned value does include the fractional (nanosecond) part of the duration.
904+ /// The returned value includes the fractional (nanosecond) part of the duration.
905905 ///
906906 /// # Examples
907907 /// ```
You can’t perform that action at this time.
0 commit comments