Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fffclaypool committed Sep 14, 2021
1 parent 8009c1a commit efd241e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/example8.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ rejectPromise().then(undefined, () => console.log("rejected")); // rejected
rejectPromise().catch(() => console.log("rejected")); // rejected

/*
Promiseではコンストラクタの処理で例外が発生した場合に自動的に例外がキャッチされる. 例外が発生したPromise
Promiseではコンストラクタの処理で例外が発生した場合に自動的に例外がキャッチされる. 例外が発生したPromise
インスタンスはreject関数を呼び出したのと同じように失敗したものとして扱われる. そのため, Promise内で例外が
発生するとthenメソッドの第二引数やcatchメソッドで登録したエラー時のコールバック関数が呼び出される. すなわち,
Promiseにおける処理ではtry ~ catch構文を使わなくても例外をキャッチできる
Expand Down

0 comments on commit efd241e

Please sign in to comment.