Skip to content

Commit 5808840

Browse files
committed
Merge pull request nzakas#193 from fikriauliya/patch-1
Update 11-Promises.md
2 parents e7710c0 + c9deac0 commit 5808840

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manuscript/11-Promises.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ p1.then(function(value) {
630630
});
631631
```
632632

633-
In this example, a new promise is created within the fulfillment handler for `p1`. That means the second fulfillment handler will not be executed until after `p2` has been fulfilled. This pattern is useful when you want to wait until a previous promise has been settled before before triggering another promise.
633+
In this example, a new promise is created within the fulfillment handler for `p1`. That means the second fulfillment handler will not be executed until after `p2` has been fulfilled. This pattern is useful when you want to wait until a previous promise has been settled before triggering another promise.
634634

635635
## Responding to Multiple Promises
636636

0 commit comments

Comments
 (0)