From d5000b5d0fd19312258c917298be486aed7beb16 Mon Sep 17 00:00:00 2001 From: Joseph Mawa <52580190+nibble0101@users.noreply.github.com> Date: Fri, 18 Sep 2020 18:30:37 +0300 Subject: [PATCH] Removed note about promise chaining as suggested in issue #39487 (#39609) --- .../es6/handle-a-rejected-promise-with-catch.english.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/handle-a-rejected-promise-with-catch.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/handle-a-rejected-promise-with-catch.english.md index 78fbcc61bed..5d3badadba3 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/handle-a-rejected-promise-with-catch.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/handle-a-rejected-promise-with-catch.english.md @@ -16,8 +16,6 @@ myPromise.catch(error => { ``` error is the argument passed in to the reject method. - -Note: the then and catch methods can be chained to the promise declaration if you choose. ## Instructions