Merge pull request #489 from k-yang/patch-2

Fixed code reference in explanation
This commit is contained in:
Ilya Kantor 2018-08-30 13:41:12 +03:00 committed by GitHub
commit b29243b0d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -319,7 +319,7 @@ We do a part of the job `(*)`:
2. Second run: `i=1000001..2000000`.
3. ...and so on, the `while` checks if `i` is evenly divided by `1000000`.
Then the next call is scheduled in `(*)` if we're not done yet.
Then the next call is scheduled in `(**)` if we're not done yet.
Pauses between `count` executions provide just enough "breath" for the JavaScript engine to do something else, to react to other user actions.