File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -198,12 +198,12 @@ impl f32 {
198
198
}
199
199
}
200
200
201
- /// Returns a number composed of the magnitude of one number and the sign of
202
- /// another .
201
+ /// Returns a number composed of the magnitude of `self` and the sign of
202
+ /// `y` .
203
203
///
204
204
/// Equal to `self` if the sign of `self` and `y` are the same, otherwise
205
- /// equal to `-y `. If `self` is a `NAN`, then a `NAN` with the sign of `y`
206
- /// is returned.
205
+ /// equal to `-self `. If `self` is a `NAN`, then a `NAN` with the sign of
206
+ /// `y` is returned.
207
207
///
208
208
/// # Examples
209
209
///
Original file line number Diff line number Diff line change @@ -176,12 +176,12 @@ impl f64 {
176
176
}
177
177
}
178
178
179
- /// Returns a number composed of the magnitude of one number and the sign of
180
- /// another .
179
+ /// Returns a number composed of the magnitude of `self` and the sign of
180
+ /// `y` .
181
181
///
182
182
/// Equal to `self` if the sign of `self` and `y` are the same, otherwise
183
- /// equal to `-y `. If `self` is a `NAN`, then a `NAN` with the sign of `y`
184
- /// is returned.
183
+ /// equal to `-self `. If `self` is a `NAN`, then a `NAN` with the sign of
184
+ /// `y` is returned.
185
185
///
186
186
/// # Examples
187
187
///
You can’t perform that action at this time.
0 commit comments