File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -95,9 +95,9 @@ extension ${Self}: CustomStringConvertible {
95
95
///
96
96
/// For all finite values, the value of this property is a string that can be
97
97
/// converted back to an instance of ${Self} without rounding errors. That
98
- /// is, if `x` in a `${Self}`, then `${Self}(x.description) == x` is always
99
- /// true. For any NaN value, the property's value is "nan", and for positive
100
- /// and negative infinity its value is "inf" and "-inf".
98
+ /// is, if `x` is an instance of `${Self}`, then `${Self}(x.description) ==
99
+ /// x` is always true. For any NaN value, the property's value is "nan", and
100
+ /// for positive and negative infinity its value is "inf" and "-inf".
101
101
public var description: String {
102
102
if isNaN {
103
103
return " nan "
You can’t perform that action at this time.
0 commit comments