From 397a3aff4efe1f88b4af389d72a3e186fb10004e Mon Sep 17 00:00:00 2001 From: Mau Di Bert Date: Fri, 18 Jan 2019 09:59:23 -0300 Subject: [PATCH] Update task.md If it's not mentioned, the reader could not change code inside showStep() and then, showStep() could be just the last call of the statement. --- 1-js/04-object-basics/04-object-methods/8-chain-calls/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/04-object-methods/8-chain-calls/task.md b/1-js/04-object-basics/04-object-methods/8-chain-calls/task.md index a989846f..eca9f4e9 100644 --- a/1-js/04-object-basics/04-object-methods/8-chain-calls/task.md +++ b/1-js/04-object-basics/04-object-methods/8-chain-calls/task.md @@ -30,7 +30,7 @@ ladder.down(); ladder.showStep(); // 1 ``` -Modify the code of `up` and `down` to make the calls chainable, like this: +Modify the code of `up`, `down` and `showStep` to make the calls chainable, like this: ```js ladder.up().up().down().showStep(); // 1