From 6118cc08785ac568abc1c0745e384448b0b91306 Mon Sep 17 00:00:00 2001 From: Petr Glivicky Date: Fri, 4 Dec 2020 21:13:51 +0100 Subject: [PATCH] Add a missing bracket in the solution description --- .../07-modifying-document/10-clock-setinterval/solution.md | 1 + 1 file changed, 1 insertion(+) diff --git a/2-ui/1-document/07-modifying-document/10-clock-setinterval/solution.md b/2-ui/1-document/07-modifying-document/10-clock-setinterval/solution.md index 55debebf..1414e90c 100644 --- a/2-ui/1-document/07-modifying-document/10-clock-setinterval/solution.md +++ b/2-ui/1-document/07-modifying-document/10-clock-setinterval/solution.md @@ -44,6 +44,7 @@ function clockStart() { // run the clock timerId = setInterval(update, 1000); } update(); // (*) +} function clockStop() { clearInterval(timerId);