-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Description
The highlighted sentence in the following is not a complete sentence as is kind of confusing:
Although both Listing 7-11 and 7-13 accomplish the same task, Listing 7-11 is the idiomatic way to bring a function into scope with use. Bringing the function’s parent module into scope with use so we have to specify the parent module when calling the function makes it clear that the function isn’t locally defined while still minimizing repetition of the full path. The code in Listing 7-13 is unclear as to where add_to_waitlist is defined.
Suggest rewording to:
We are bringing the function’s parent module into scope with use so we have to specify the parent module when calling the function. This makes it clear that the function isn’t locally defined while still minimizing repetition of the full path.