Skip to content

Commit 5374535

Browse files
authored
Update Store.swift
1 parent 1f1656d commit 5374535

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

Sources/ComposableArchitecture/Store.swift

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,6 @@ public final class Store<State, Action> {
173173
/// .task { await store.send(.task).finish() }
174174
/// ```
175175
///
176-
/// > Important: The ``Store`` is not thread safe and you should only send actions to it from the
177-
/// > main thread. If you want to send actions on background threads due to the fact that the
178-
/// > reducer is performing computationally expensive work, then a better way to handle this is to
179-
/// > wrap that work in an ``Effect`` that is performed on a background thread so that the
180-
/// > result can be fed back into the store.
181-
///
182176
/// - Parameter action: An action.
183177
/// - Returns: A ``StoreTask`` that represents the lifecycle of the effect executed when
184178
/// sending the action.

0 commit comments

Comments
 (0)