code non-compatible with clarification drawing

same problem with merge request  #1554 which I have sent freshly.
This commit is contained in:
lumosmind 2019-10-30 13:53:27 +03:00 committed by GitHub
parent 601d9583f7
commit 80b6da144d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -193,7 +193,7 @@ The second one uses nested `setTimeout`:
```js
let i = 1;
setTimeout(function run() {
func(i);
func(i++);
setTimeout(run, 100);
}, 100);
```