Skip to content

Commit e19a2f5

Browse files
committed
Avoid 'a' vs 'an' alternation before type name.
1 parent b92a5bd commit e19a2f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stdlib/public/core/FloatingPointTypes.swift.gyb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)