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 7d7e7c1 commit f3983c3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,13 +124,13 @@ you can use the subscript ``IdentifiedAction/AllCasePaths-swift.struct/subscript
receive a particular action for an element:

```swift
store.receive(.rows[id: 0].response.success)
store.receive(\.rows[id: 0].response.success)
```

And the same goes for ``StackAction`` too:

```swift
store.receive(.path[id: 0].response.success)
store.receive(.\path[id: 0].response.success)
```

### Moving off of TaskResult
Expand Down

0 comments on commit f3983c3

Please sign in to comment.