Skip to content

Commit b5b12f3

Browse files
Nicolappsmbeaudru
authored andcommitted
spelling : it’s -> its (mbeaudru#80)
1 parent fdd3e61 commit b5b12f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -990,7 +990,7 @@ const xFetcherPromise = new Promise( // Create promise using "new" keyword and s
990990

991991
As seen in the above sample, the Promise object takes an *executor* function which takes two parameters **resolve** and **reject**. Those parameters are functions which when called are going to move the promise *pending* state to respectively a *fulfilled* and *rejected* state.
992992

993-
The promise is in pending state after instance creation and it's *executor* function is executed immediately. Once one of the function *resolve* or *reject* is called in the *executor* function, the promise will call its associated handlers.
993+
The promise is in pending state after instance creation and its *executor* function is executed immediately. Once one of the function *resolve* or *reject* is called in the *executor* function, the promise will call its associated handlers.
994994

995995
##### Promise handlers usage
996996

0 commit comments

Comments
 (0)