Skip to content

Commit 8267093

Browse files
chore: Update swift to Swift in comments
Co-authored-by: Mark Pospesel <[email protected]>
1 parent 0cfc4e3 commit 8267093

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Sources/DispatchAsync/DispatchGroup.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
// It is designed to safely elide away if and when Dispatch is introduced
1818
// in the required Dispatch support becomes available.
1919
#if os(WASI) && !canImport(Dispatch)
20-
/// Drop-in replacement for ``Dispatch.DispatchGroup``, implemented using pure swift.
20+
/// Drop-in replacement for ``Dispatch.DispatchGroup``, implemented using pure Swift.
2121
@available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
2222
public typealias DispatchGroup = DispatchAsync.DispatchGroup
2323
#endif
2424

2525
extension DispatchAsync {
2626
// MARK: - Public Interface for Non-Async Usage -
2727

28-
/// Drop-in replacement for ``Dispatch.DispatchGroup``, implemented using pure swift.
28+
/// Drop-in replacement for ``Dispatch.DispatchGroup``, implemented using pure Swift.
2929
///
3030
/// The primary goal of this implementation is to enable WASM support for Dispatch.
3131
///

Sources/DispatchAsync/DispatchQueue.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
// It is designed to safely elide away if and when Dispatch is introduced
1818
// in the required Dispatch support becomes available.
1919
#if os(WASI) && !canImport(Dispatch)
20-
/// Drop-in replacement for ``Dispatch.DispatchQueue``, implemented using pure swift.
20+
/// Drop-in replacement for ``Dispatch.DispatchQueue``, implemented using pure Swift.
2121
@available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
2222
public typealias DispatchQueue = DispatchAsync.DispatchQueue
2323
#endif
2424

2525
extension DispatchAsync {
26-
/// Drop-in replacement for ``Dispatch.DispatchQueue``, implemented using pure swift.
26+
/// Drop-in replacement for ``Dispatch.DispatchQueue``, implemented using pure Swift.
2727
///
2828
/// The primary goal of this implementation is to enable WASM support for Dispatch.
2929
///

Sources/DispatchAsync/DispatchSemaphore.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// It is designed to safely elide away if and when Dispatch is introduced
1818
// in the required Dispatch support becomes available.
1919
#if os(WASI) && !canImport(Dispatch)
20-
/// Drop-in replacement for ``Dispatch.DispatchSemaphore``, implemented using pure swift.
20+
/// Drop-in replacement for ``Dispatch.DispatchSemaphore``, implemented using pure Swift.
2121
@available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
2222
public typealias DispatchSemaphore = DispatchAsync.DispatchSemaphore
2323
#endif // os(WASI) && !canImport(Dispatch)

0 commit comments

Comments
 (0)