Fixed typo

This commit is contained in:
Danila 2017-03-28 21:03:24 +03:00 committed by GitHub
parent bc9117e70f
commit 95b340d4a7

View file

@ -35,7 +35,7 @@ Let's formulate two questions for the seed, and then study internal mechanics pi
Such situations are common in both browser and server-side development. A function may be scheduled to execute later than it is created: on user action or after a network request etc. Such situations are common in both browser and server-side development. A function may be scheduled to execute later than it is created: on user action or after a network request etc.
So, the the question is: does it pick up latest changes? So, the question is: does it pick up latest changes?
2. The function `makeWorker` makes another function and returns it. That new function can be called from somewhere else. Will it have access to outer variables from its creation place or the invocation place or maybe both? 2. The function `makeWorker` makes another function and returns it. That new function can be called from somewhere else. Will it have access to outer variables from its creation place or the invocation place or maybe both?