Skip to content

Commit

Permalink
Update MigratingTo1.4.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephencelis authored Nov 13, 2023
1 parent f3983c3 commit fa31c93
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ specify a concrete action:

```swift
store.receive(.response(.success("Hello!"))) {
// ...
}
```

Expand All @@ -159,7 +159,7 @@ tests:

```swift
store.receive(.child(.response(.success("Hello!")))) {
// ...
}
```

Expand All @@ -170,7 +170,7 @@ since typically that is covered in the state assertion:

```swift
store.receive(\.child.response.success) {
// ...
}
```

Expand Down Expand Up @@ -222,7 +222,7 @@ identified action:

```swift
Reduce { state, action in
// ...
// ...
}
.forEach(\.rows, action: \.rows) {
RowFeature()
Expand Down

0 comments on commit fa31c93

Please sign in to comment.