Break up long sentence; fix punctuation

Fixes: rdar://115730302
This commit is contained in:
Alex Martini
2025-09-23 16:26:54 -07:00
parent d980e3413e
commit 3ad3421e01
2 changed files with 6 additions and 6 deletions

View File

@@ -81,10 +81,10 @@ extension Actor {
/// * In `-O` builds (the default for Xcode's Release configuration), stops
/// program execution.
///
/// - Note: This check is performed against the actor's serial executor,
/// meaning that / if another actor uses the same serial executor--by using
/// - Note: Because this check is performed against the actor's serial executor,
/// if another actor uses the same serial executor--by using
/// that actor's serial executor as its own ``Actor/unownedExecutor``--this
/// check will succeed , as from a concurrency safety perspective, the
/// check will succeed. From a concurrency safety perspective, the
/// serial executor guarantees mutual exclusion of those two actors.
///
/// - Parameters:

View File

@@ -30,10 +30,10 @@ extension DistributedActor {
/// * In `-O` builds (the default for Xcode's Release configuration), stops
/// program execution.
///
/// - Note: This check is performed against the actor's serial executor,
/// meaning that / if another actor uses the same serial executor--by using
/// - Note: Because this check is performed against the actor's serial executor,
/// if another actor uses the same serial executor--by using
/// that actor's serial executor as its own ``Actor/unownedExecutor``--this
/// check will succeed , as from a concurrency safety perspective, the
/// check will succeed. From a concurrency safety perspective, the
/// serial executor guarantees mutual exclusion of those two actors.
///
/// - Parameters: