Skip to content

Commit a6b56e0

Browse files
committed
Spell out 'bit'
1 parent 4ef8487 commit a6b56e0

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
@@ -41,7 +41,7 @@ def Availability(bits):
4141

4242
if Self == 'Float16':
4343
SelfDocComment = '''\
44-
/// A half-precision (16b), floating-point value type.
44+
/// A half-precision (16-bit), floating-point value type.
4545
///
4646
/// On macOS, `Float16` is only available when targeting Apple silicon.
4747
/// On other supported platforms, `Float16` is available for all
@@ -50,11 +50,11 @@ if Self == 'Float16':
5050
/// arithmetic will be emulated by the swift compiler and runtime.'''
5151
elif Self == 'Float':
5252
SelfDocComment = '''\
53-
/// A single-precision, floating-point value type.'''
53+
/// A single-precision (32-bit), floating-point value type.'''
5454

5555
elif Self == 'Double':
5656
SelfDocComment = '''\
57-
/// A double-precision, floating-point value type.'''
57+
/// A double-precision (64-bit), floating-point value type.'''
5858

5959
elif Self == 'Float80':
6060
SelfDocComment = '''\

0 commit comments

Comments
 (0)