Skip to content

Commit e7d229a

Browse files
committed
Cherry pick Swift 5.5 doc changes in GlobalActor.swift
1 parent 7913b82 commit e7d229a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/public/Concurrency/GlobalActor.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ import Swift
1515
/// A type that represents a globally-unique actor that can be used to isolate
1616
/// various declarations anywhere in the program.
1717
///
18-
/// A type that conforms to the `GlobalActor` protocol and is marked with the
18+
/// A type that conforms to the `GlobalActor` protocol and is marked with
1919
/// the `@globalActor` attribute can be used as a custom attribute. Such types
2020
/// are called global actor types, and can be applied to any declaration to
2121
/// specify that such types are isolated to that global actor type. When using
2222
/// such a declaration from another actor (or from nonisolated code),
23-
/// synchronization is performed through the \c shared actor instance to ensure
23+
/// synchronization is performed through the shared actor instance to ensure
2424
/// mutually-exclusive access to the declaration.
2525
@available(SwiftStdlib 5.1, *)
2626
public protocol GlobalActor {

0 commit comments

Comments
 (0)