@@ -469,8 +469,8 @@ is set to `"application/json"`.
469
469
- ` status ` One of: ` initial ` , ` pending ` , ` fulfilled ` , ` rejected ` .
470
470
- ` isInitial ` true when no promise has ever started, or one started but was cancelled.
471
471
- ` isPending ` true when a promise is currently awaiting settlement. Alias: ` isLoading `
472
- - ` isFulfilled ` true when the last promise was fulfilled with a value . Alias: ` isResolved `
473
- - ` isRejected ` true when the last promise was rejected with a reason .
472
+ - ` isFulfilled ` true when the last promise was fulfilled. Alias: ` isResolved `
473
+ - ` isRejected ` true when the last promise was rejected.
474
474
- ` isSettled ` true when the last promise was fulfilled or rejected (not initial or pending).
475
475
- ` counter ` The number of times a promise was started.
476
476
- ` cancel ` Cancel any pending promise.
@@ -532,23 +532,23 @@ These are available for import as `statusTypes`.
532
532
533
533
> ` boolean `
534
534
535
- ` true ` while a promise is pending (aka loading), ` false ` otherwise.
535
+ ` true ` while a promise is pending (loading), ` false ` otherwise.
536
536
537
537
Alias: ` isLoading `
538
538
539
539
#### ` isFulfilled `
540
540
541
541
> ` boolean `
542
542
543
- ` true ` when the last promise was fulfilled (aka resolved) with a value.
543
+ ` true ` when the last promise was fulfilled (resolved to a value) .
544
544
545
545
Alias: ` isResolved `
546
546
547
547
#### ` isRejected `
548
548
549
549
> ` boolean `
550
550
551
- ` true ` when the last promise was rejected with an error .
551
+ ` true ` when the last promise was rejected.
552
552
553
553
#### ` isSettled `
554
554
@@ -644,7 +644,7 @@ return (
644
644
645
645
### ` <Pending> ` / ` <Async.Pending> `
646
646
647
- This component renders only while the promise is pending (aka loading) ( unsettled).
647
+ This component renders only while the promise is pending (loading / unsettled).
648
648
649
649
Alias: ` <Async.Loading> `
650
650
@@ -677,7 +677,7 @@ return (
677
677
678
678
### ` <Fulfilled> ` / ` <Async.Fulfilled> `
679
679
680
- This component renders only when the promise is fulfilled with data ( ` data !== undefined` ).
680
+ This component renders only when the promise is fulfilled (resolved to a value, could be ` undefined ` ).
681
681
682
682
Alias: ` <Async.Resolved> `
683
683
0 commit comments