Skip to content

Commit 953665d

Browse files
bvirletmxcl
authored andcommitted
Minor correction to chaining sequence example
1 parent f9cc0d6 commit 953665d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Documentation/CommonPatterns.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ When you have a series of tasks to perform on an array of data:
173173
```swift
174174
// fade all visible table cells one by one in a “cascading” effect
175175

176-
let fade = Guarantee()
176+
var fade = Guarantee()
177177
for cell in tableView.visibleCells {
178178
fade = fade.then {
179179
UIView.animate(.promise, duration: 0.1) {

0 commit comments

Comments
 (0)