should be "requiring" module invokes the function

Before this line, it says the function flows from providing module to requiring module.
After this line, it says the argument travels back from requiring moduleo to providing module.
I believe that argument supplying and function invoking should happen at requiring module, rather than providing module.
This commit is contained in:
Weng Shiwei 2017-07-25 11:29:20 -04:00 committed by Matthew Flatt
parent 1e9a56215f
commit 4bad4d7655

View File

@ -120,7 +120,7 @@ imagine the flow of values in a program between two
modules. First, one module (the server) defines a function, and then that
module is required by another (the client). So far, the function itself
has to go from the original, providing module to the
requiring module. Now, imagine that the providing module
requiring module. Now, imagine that the requiring module
invokes the function, supplying it an argument. At this
point, the flow of values reverses. The argument is
traveling back from the requiring module to the providing