diff --git a/open-in-web-browser.html b/open-in-web-browser.html index 867fb9a..aa10c71 100644 --- a/open-in-web-browser.html +++ b/open-in-web-browser.html @@ -3869,7 +3869,7 @@
catch()
catch()
method is typically used over providing each then()
with a rejection parameter.catch()
over providing a rejection function for each then()
.catch()
method is simply a short-hand for, .then(null, error => { // do something with error })
.catch()
method is simply a short-hand for, .then(undefined, error => { // do something with error })
.