File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,8 @@ if Self == 'Float16':
43
43
SelfDocComment = '''\
44
44
/// A half-precision (16b), floating-point value type.
45
45
///
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.'''
47
48
elif Self == 'Float':
48
49
SelfDocComment = '''\
49
50
/// A single-precision, floating-point value type.'''
@@ -56,7 +57,9 @@ elif Self == 'Float80':
56
57
SelfDocComment = '''\
57
58
/// An extended-precision, floating-point value type.
58
59
///
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.'''
60
63
61
64
else :
62
65
raise ValueError( 'Unhandled float type. ')
You can’t perform that action at this time.
0 commit comments