Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions stdlib/public/Concurrency/MainActor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ extension MainActor {
/// executor of the MainActor.
///
/// If that is the case, the operation is invoked with an `isolated` version
/// of the actor, / allowing synchronous access to actor local state without
/// of the actor, allowing synchronous access to actor local state without
/// hopping through asynchronous boundaries.
///
/// If the current context is not running on the actor's serial executor, or
Expand All @@ -107,9 +107,9 @@ extension MainActor {
/// will hop task execution to the target actor if necessary.
///
/// - Note: This check is performed against the MainActor's serial executor,
/// meaning that / if another actor uses the same serial executor--by using
/// meaning that if another actor uses the same serial executor--by using
/// ``MainActor/sharedUnownedExecutor`` as its own
/// ``Actor/unownedExecutor``--this check will succeed , as from a concurrency
/// ``Actor/unownedExecutor``--this check will succeed, as from a concurrency
/// safety perspective, the serial executor guarantees mutual exclusion of
/// those two actors.
///
Expand Down