@@ -93,11 +93,11 @@ ${Availability(bits)}
93
93
extension ${ Self} : CustomStringConvertible {
94
94
/// A textual representation of the value.
95
95
///
96
- /// For all finite values, the value of this property is a string that can
97
- /// be converted back to an instance of ${Self} without rounding errors.
98
- /// That is, if `x` in a `${Self}`, then `${Self}(x.description) == x` is
99
- /// always true. For any NaN value, the property's value is "nan", and for
100
- /// positive and negative infinity its value is "inf" and "-inf".
96
+ /// For all finite values, the value of this property is a string that can be
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".
101
101
public var description: String {
102
102
if isNaN {
103
103
return " nan "
@@ -115,7 +115,7 @@ ${Availability(bits)}
115
115
extension ${ Self} : CustomDebugStringConvertible {
116
116
/// A textual representation of the value, suitable for debugging.
117
117
///
118
- /// This property has the same value as the `description` propyrty , except
118
+ /// This property has the same value as the `description` property , except
119
119
/// that NaN values are printed in an extended format.
120
120
public var debugDescription: String {
121
121
var ( buffer, length) = _float ${ bits} ToString( self , debug: true )
0 commit comments