File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -81,10 +81,10 @@ extension Actor {
81
81
/// * In `-O` builds (the default for Xcode's Release configuration), stops
82
82
/// program execution.
83
83
///
84
- /// - Note: This check is performed against the actor's serial executor,
85
- /// meaning that / if another actor uses the same serial executor--by using
84
+ /// - Note: Because this check is performed against the actor's serial executor,
85
+ /// if another actor uses the same serial executor--by using
86
86
/// that actor's serial executor as its own ``Actor/unownedExecutor``--this
87
- /// check will succeed , as from a concurrency safety perspective, the
87
+ /// check will succeed. From a concurrency safety perspective, the
88
88
/// serial executor guarantees mutual exclusion of those two actors.
89
89
///
90
90
/// - Parameters:
Original file line number Diff line number Diff line change @@ -30,10 +30,10 @@ extension DistributedActor {
30
30
/// * In `-O` builds (the default for Xcode's Release configuration), stops
31
31
/// program execution.
32
32
///
33
- /// - Note: This check is performed against the actor's serial executor,
34
- /// meaning that / if another actor uses the same serial executor--by using
33
+ /// - Note: Because this check is performed against the actor's serial executor,
34
+ /// if another actor uses the same serial executor--by using
35
35
/// that actor's serial executor as its own ``Actor/unownedExecutor``--this
36
- /// check will succeed , as from a concurrency safety perspective, the
36
+ /// check will succeed. From a concurrency safety perspective, the
37
37
/// serial executor guarantees mutual exclusion of those two actors.
38
38
///
39
39
/// - Parameters:
Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ extension Duration {
251
251
return Duration ( _high: highScaled + Int64( lowScaled. high) , low: lowScaled. low)
252
252
}
253
253
254
- /// Construct a `Duration` given a number of seconds nanoseconds as a
254
+ /// Construct a `Duration` given a number of nanoseconds as a
255
255
/// `Double` by converting the value into the closest attosecond scale value.
256
256
///
257
257
/// let d: Duration = .nanoseconds(382.9)
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ def Availability(bits):
41
41
42
42
if Self == 'Float16 ':
43
43
SelfDocComment = '''\
44
- /// A half-precision (16b ), floating-point value type.
44
+ /// A half-precision (16-bit ), floating-point value type.
45
45
///
46
46
/// On macOS, `Float16` is only available when targeting Apple silicon.
47
47
/// On other supported platforms, `Float16` is available for all
@@ -50,11 +50,11 @@ if Self == 'Float16':
50
50
/// arithmetic will be emulated by the swift compiler and runtime.'''
51
51
elif Self == 'Float':
52
52
SelfDocComment = '''\
53
- /// A single-precision, floating-point value type.'''
53
+ /// A single-precision (32-bit) , floating-point value type.'''
54
54
55
55
elif Self == 'Double':
56
56
SelfDocComment = '''\
57
- /// A double-precision, floating-point value type.'''
57
+ /// A double-precision (64-bit) , floating-point value type.'''
58
58
59
59
elif Self == 'Float80 ':
60
60
SelfDocComment = '''\
You can’t perform that action at this time.
0 commit comments