File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,6 @@ impl f32 {
202
202
/// # Examples
203
203
///
204
204
/// ```
205
- /// #![feature(copysign)]
206
205
/// use std::f32;
207
206
///
208
207
/// let f = 3.5_f32;
@@ -216,7 +215,7 @@ impl f32 {
216
215
/// ```
217
216
#[ inline]
218
217
#[ must_use]
219
- #[ unstable ( feature= "copysign" , issue= "55169 ") ]
218
+ #[ stable ( feature = "copysign" , since = "1.35.0 ") ]
220
219
pub fn copysign ( self , y : f32 ) -> f32 {
221
220
unsafe { intrinsics:: copysignf32 ( self , y) }
222
221
}
Original file line number Diff line number Diff line change @@ -180,7 +180,6 @@ impl f64 {
180
180
/// # Examples
181
181
///
182
182
/// ```
183
- /// #![feature(copysign)]
184
183
/// use std::f64;
185
184
///
186
185
/// let f = 3.5_f64;
@@ -194,7 +193,7 @@ impl f64 {
194
193
/// ```
195
194
#[ inline]
196
195
#[ must_use]
197
- #[ unstable ( feature= "copysign" , issue= "55169 ") ]
196
+ #[ stable ( feature = "copysign" , since = "1.35.0 ") ]
198
197
pub fn copysign ( self , y : f64 ) -> f64 {
199
198
unsafe { intrinsics:: copysignf64 ( self , y) }
200
199
}
You can’t perform that action at this time.
0 commit comments