@@ -416,7 +416,7 @@ public protocol FloatingPoint: SignedNumeric, Strideable, Hashable
416
416
/// let x = -33.375
417
417
/// // x.sign == .minus
418
418
///
419
- /// Do not use this property to check whether a floating point value is
419
+ /// Don't use this property to check whether a floating point value is
420
420
/// negative. For a value `x`, the comparison `x.sign == .minus` is not
421
421
/// necessarily the same as `x < 0`. In particular, `x.sign == .minus` if
422
422
/// `x` is -0, and while `x < 0` is always `false` if `x` is NaN, `x.sign`
@@ -1147,7 +1147,7 @@ public protocol FloatingPoint: SignedNumeric, Strideable, Hashable
1147
1147
/// A Boolean value indicating whether the instance is subnormal.
1148
1148
///
1149
1149
/// A *subnormal* value is a nonzero number that has a lesser magnitude than
1150
- /// the smallest normal number. Subnormal values do not use the full
1150
+ /// the smallest normal number. Subnormal values don't use the full
1151
1151
/// precision available to values of a type.
1152
1152
///
1153
1153
/// Zero is neither a normal nor a subnormal number. Subnormal numbers are
@@ -1157,7 +1157,7 @@ public protocol FloatingPoint: SignedNumeric, Strideable, Hashable
1157
1157
1158
1158
/// A Boolean value indicating whether the instance is infinite.
1159
1159
///
1160
- /// Note that `isFinite` and `isInfinite` do not form a dichotomy, because
1160
+ /// Note that `isFinite` and `isInfinite` don't form a dichotomy, because
1161
1161
/// they are not total: If `x` is `NaN`, then both properties are `false`.
1162
1162
var isInfinite : Bool { get }
1163
1163
0 commit comments