Skip to content

Commit 8d5ba06

Browse files
author
Chip Miller
committed
Update promise.md
spelling patch
1 parent c198d21 commit 8d5ba06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

md/promise.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ upon resolution. When a promise is rejected all its children will be summarily r
1515

1616
Promises have three possible states: *pending*, *rejected*, and *fulfilled*. When a promise is created it is set
1717
to *pending* and will remain in that state until processing is complete. A completed promise is either *rejected*,
18-
indicating that an exception was thrown during processing, or *fulfilled*, indicating succedd. If a promise is
18+
indicating that an exception was thrown during processing, or *fulfilled*, indicating it succeeded. If a promise is
1919
*fulfilled* its `value` will be updated to reflect the result of the operation. If *rejected* the `reason` will
2020
be updated with a reference to the thrown exception. The predicate methods `pending?`, `rejected`, and `fulfilled?`
2121
can be called at any time to obtain the state of the promise, as can the `state` method, which returns a symbol.

0 commit comments

Comments
 (0)