@@ -1062,14 +1062,13 @@ impl Duration {
10621062 ///
10631063 /// # Examples
10641064 /// ```
1065- /// #![feature(div_duration)]
10661065 /// use std::time::Duration;
10671066 ///
10681067 /// let dur1 = Duration::new(2, 700_000_000);
10691068 /// let dur2 = Duration::new(5, 400_000_000);
10701069 /// assert_eq!(dur1.div_duration_f64(dur2), 0.5);
10711070 /// ```
1072- #[ unstable ( feature = "div_duration" , issue = "63139 " ) ]
1071+ #[ stable ( feature = "div_duration" , since = "1.80.0 " ) ]
10731072 #[ must_use = "this returns the result of the operation, \
10741073 without modifying the original"]
10751074 #[ inline]
@@ -1082,14 +1081,13 @@ impl Duration {
10821081 ///
10831082 /// # Examples
10841083 /// ```
1085- /// #![feature(div_duration)]
10861084 /// use std::time::Duration;
10871085 ///
10881086 /// let dur1 = Duration::new(2, 700_000_000);
10891087 /// let dur2 = Duration::new(5, 400_000_000);
10901088 /// assert_eq!(dur1.div_duration_f32(dur2), 0.5);
10911089 /// ```
1092- #[ unstable ( feature = "div_duration" , issue = "63139 " ) ]
1090+ #[ stable ( feature = "div_duration" , since = "1.80.0 " ) ]
10931091 #[ must_use = "this returns the result of the operation, \
10941092 without modifying the original"]
10951093 #[ inline]
0 commit comments