Skip to content

Commit

Permalink
Merge pull request #36 from mumez/feature/TaskIt-integration-3
Browse files Browse the repository at this point in the history
Fixed error example
  • Loading branch information
mumez authored Jan 4, 2020
2 parents 08df3ed + daa88ca commit f6aed4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/TaskIt-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ future := (talk asyncExecuteSql: 'select * from programming_languages') future.
future
onSuccessDo: [:ret | Transcript cr; show: ret ];
onSuccessDo: [:ret | ret metadata inspect ];
onFailureDo: [:error | error inspect];
onFailureDo: [:error | error pass].
onFailureDo: [:error | error signal];
onFailureDo: [:error | error inspect].
```

## Combining future sends
Expand Down

0 comments on commit f6aed4f

Please # to comment.