Skip to content

Commit 4d35aae

Browse files
committed
Incorporate tech review from @stephentyrone.
1 parent 3611419 commit 4d35aae

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

stdlib/public/core/FloatingPointTypes.swift.gyb

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ if Self == 'Float16':
4343
SelfDocComment = '''\
4444
/// A half-precision (16b), floating-point value type.
4545
///
46-
/// `Float16` is available on Apple silicon, and unavailable on Intel.'''
46+
/// `Float16` is available on Apple silicon,
47+
/// and unavailable on Intel when targeting macOS.'''
4748
elif Self == 'Float':
4849
SelfDocComment = '''\
4950
/// A single-precision, floating-point value type.'''
@@ -56,7 +57,9 @@ elif Self == 'Float80':
5657
SelfDocComment = '''\
5758
/// An extended-precision, floating-point value type.
5859
///
59-
/// `Float80` is available on Intel, and unavailable on Apple silicon.'''
60+
/// `Float80` is available on Intel
61+
/// when the target system supports an 80-bit long double type,
62+
/// and unavailable on Apple silicon.'''
6063

6164
else:
6265
raise ValueError('Unhandled float type.')

0 commit comments

Comments
 (0)