docs: say "includes" instead of "does include" · model-checking/verify-rust-std@e6e5e84 (original) (raw)

Original file line number Diff line number Diff line change
@@ -842,7 +842,7 @@ impl Duration {
842 842
843 843 /// Returns the number of seconds contained by this `Duration` as `f64`.
844 844 ///
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.
846 846 ///
847 847 /// # Examples
848 848 /// ```
@@ -861,7 +861,7 @@ impl Duration {
861 861
862 862 /// Returns the number of seconds contained by this `Duration` as `f32`.
863 863 ///
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.
865 865 ///
866 866 /// # Examples
867 867 /// ```
@@ -880,7 +880,7 @@ impl Duration {
880 880
881 881 /// Returns the number of milliseconds contained by this `Duration` as `f64`.
882 882 ///
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.
884 884 ///
885 885 /// # Examples
886 886 /// ```
@@ -901,7 +901,7 @@ impl Duration {
901 901
902 902 /// Returns the number of milliseconds contained by this `Duration` as `f32`.
903 903 ///
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.
905 905 ///
906 906 /// # Examples
907 907 /// ```