Skip to content

Commit 3ad3421

Browse files
committed
Break up long sentence; fix punctuation
Fixes: rdar://115730302
1 parent d980e34 commit 3ad3421

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

stdlib/public/Concurrency/ExecutorAssertions.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ extension Actor {
8181
/// * In `-O` builds (the default for Xcode's Release configuration), stops
8282
/// program execution.
8383
///
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
8686
/// 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
8888
/// serial executor guarantees mutual exclusion of those two actors.
8989
///
9090
/// - Parameters:

stdlib/public/Distributed/DistributedAssertions.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ extension DistributedActor {
3030
/// * In `-O` builds (the default for Xcode's Release configuration), stops
3131
/// program execution.
3232
///
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
3535
/// 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
3737
/// serial executor guarantees mutual exclusion of those two actors.
3838
///
3939
/// - Parameters:

0 commit comments

Comments
 (0)