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 {
9595 ///
9696 /// For all finite values, the value of this property is a string that can be
9797 /// 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".
101101 public var description: String {
102102 if isNaN {
103103 return " nan "
You can’t perform that action at this time.
0 commit comments