File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ upon resolution. When a promise is rejected all its children will be summarily r
15
15
16
16
Promises have three possible states: * pending* , * rejected* , and * fulfilled* . When a promise is created it is set
17
17
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
19
19
* fulfilled* its ` value ` will be updated to reflect the result of the operation. If * rejected* the ` reason ` will
20
20
be updated with a reference to the thrown exception. The predicate methods ` pending? ` , ` rejected ` , and ` fulfilled? `
21
21
can be called at any time to obtain the state of the promise, as can the ` state ` method, which returns a symbol.
You can’t perform that action at this time.
0 commit comments