Skip to content

Commit 9e3ac1d

Browse files
authored
Fixes a small typo in concurrency docs (#1504)
1 parent 86438fa commit 9e3ac1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/ComposableArchitecture/Documentation.docc/Articles/SwiftConcurrency.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ extension DependencyValues {
8989
If `FactClient` is not `Sendable`, for whatever reason, you will get a warning in the `get`
9090
and `set` lines:
9191

92-
>⚠️ Type 'AudioPlayerClient' does not conform to the 'Sendable' protocol
92+
>⚠️ Type 'FactClient' does not conform to the 'Sendable' protocol
9393
9494
To fix this you need to make each dependency `Sendable`. This usually just means making sure
9595
that the interface type only holds onto `Sendable` data, and in particular, any closure-based

0 commit comments

Comments
 (0)