Skip to content

Commit

Permalink
Minor correction to chaining sequence example
Browse files Browse the repository at this point in the history
  • Loading branch information
bvirlet authored and mxcl committed May 24, 2020
1 parent f9cc0d6 commit 953665d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/CommonPatterns.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ When you have a series of tasks to perform on an array of data:
```swift
// fade all visible table cells one by one in a “cascading” effect

let fade = Guarantee()
var fade = Guarantee()
for cell in tableView.visibleCells {
fade = fade.then {
UIView.animate(.promise, duration: 0.1) {
Expand Down

0 comments on commit 953665d

Please sign in to comment.