Fixed code reference in explanation

The original reference was to (*), but it should actually be to (**)
This commit is contained in:
Kevin Yang 2018-08-29 17:58:47 -04:00 committed by GitHub
parent 62226efedc
commit 5f5ae96240
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.