Add a missing bracket in the solution description

This commit is contained in:
Petr Glivicky 2020-12-04 21:13:51 +01:00
parent d4c23dcf37
commit 6118cc0878

View file

@ -44,6 +44,7 @@ function clockStart() { // run the clock
timerId = setInterval(update, 1000);
}
update(); // (*)
}
function clockStop() {
clearInterval(timerId);