fix missing send (#2446)

This commit is contained in:
mornin
2023-09-10 13:25:46 +09:00
committed by GitHub
parent 791e3ff921
commit f0bae57f36

View File

@@ -14,7 +14,7 @@ extension Effect {
///
/// case .reloadButtonTapped:
/// // Start a new effect to load the user
/// return .run {
/// return .run { send in
/// await send(
/// .userResponse(
/// TaskResult { try await self.apiClient.loadUser() }