From 88f2c5f59baf62161a18d11383880a61b7227a93 Mon Sep 17 00:00:00 2001 From: totize Date: Tue, 29 Jan 2019 20:35:54 +0100 Subject: [PATCH] Update task.md To keep that order coherent with the solution's. --- 6-async/03-promise-chaining/01-then-vs-catch/task.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/6-async/03-promise-chaining/01-then-vs-catch/task.md b/6-async/03-promise-chaining/01-then-vs-catch/task.md index 51c08d7c..0489969b 100644 --- a/6-async/03-promise-chaining/01-then-vs-catch/task.md +++ b/6-async/03-promise-chaining/01-then-vs-catch/task.md @@ -3,10 +3,10 @@ Are these code fragments equal? In other words, do they behave the same way in any circumstances, for any handler functions? ```js -promise.then(f1, f2); +promise.then(f1).catch(f2); ``` Versus; ```js -promise.then(f1).catch(f2); +promise.then(f1, f2); ```