File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,6 @@ impl f32 {
202202 /// # Examples
203203 ///
204204 /// ```
205- /// #![feature(copysign)]
206205 /// use std::f32;
207206 ///
208207 /// let f = 3.5_f32;
@@ -216,7 +215,7 @@ impl f32 {
216215 /// ```
217216 #[ inline]
218217 #[ must_use]
219- #[ unstable ( feature= "copysign" , issue= "55169 ") ]
218+ #[ stable ( feature = "copysign" , since = "1.35.0 ") ]
220219 pub fn copysign ( self , y : f32 ) -> f32 {
221220 unsafe { intrinsics:: copysignf32 ( self , y) }
222221 }
Original file line number Diff line number Diff line change @@ -180,7 +180,6 @@ impl f64 {
180180 /// # Examples
181181 ///
182182 /// ```
183- /// #![feature(copysign)]
184183 /// use std::f64;
185184 ///
186185 /// let f = 3.5_f64;
@@ -194,7 +193,7 @@ impl f64 {
194193 /// ```
195194 #[ inline]
196195 #[ must_use]
197- #[ unstable ( feature= "copysign" , issue= "55169 ") ]
196+ #[ stable ( feature = "copysign" , since = "1.35.0 ") ]
198197 pub fn copysign ( self , y : f64 ) -> f64 {
199198 unsafe { intrinsics:: copysignf64 ( self , y) }
200199 }
You can’t perform that action at this time.
0 commit comments