diff --git a/src/libcore/time.rs b/src/libcore/time.rs index fff47ac44ef..6ab8e18adc8 100644 --- a/src/libcore/time.rs +++ b/src/libcore/time.rs @@ -502,7 +502,7 @@ impl Mul for Duration { } } -#[stable(feature = "duration_mul_div_extras", since = "1.29.0")] +#[stable(feature = "duration_mul_div_extras", since = "1.30.0")] impl Mul for u32 { type Output = Duration; @@ -511,7 +511,7 @@ impl Mul for u32 { } } -#[stable(feature = "duration_mul_div_extras", since = "1.29.0")] +#[stable(feature = "duration_mul_div_extras", since = "1.30.0")] impl Mul for Duration { type Output = Duration; @@ -535,7 +535,7 @@ impl Mul for Duration { } } -#[stable(feature = "duration_mul_div_extras", since = "1.29.0")] +#[stable(feature = "duration_mul_div_extras", since = "1.30.0")] impl Mul for f64 { type Output = Duration; @@ -551,7 +551,7 @@ impl MulAssign for Duration { } } -#[stable(feature = "duration_mul_div_extras", since = "1.29.0")] +#[stable(feature = "duration_mul_div_extras", since = "1.30.0")] impl MulAssign for Duration { fn mul_assign(&mut self, rhs: f64) { *self = *self * rhs; @@ -567,7 +567,7 @@ impl Div for Duration { } } -#[stable(feature = "duration_mul_div_extras", since = "1.29.0")] +#[stable(feature = "duration_mul_div_extras", since = "1.30.0")] impl Div for Duration { type Output = Duration; @@ -591,7 +591,7 @@ impl Div for Duration { } } -#[stable(feature = "duration_mul_div_extras", since = "1.29.0")] +#[stable(feature = "duration_mul_div_extras", since = "1.30.0")] impl Div for Duration { type Output = f64; @@ -610,7 +610,7 @@ impl DivAssign for Duration { } } -#[stable(feature = "duration_mul_div_extras", since = "1.29.0")] +#[stable(feature = "duration_mul_div_extras", since = "1.30.0")] impl DivAssign for Duration { fn div_assign(&mut self, rhs: f64) { *self = *self / rhs;