effective-debugging icon indicating copy to clipboard operation
effective-debugging copied to clipboard

Page 122, Item 46, line 9 from bottom

Open dspinellis opened this issue 8 years ago • 0 comments

p = s.client(q, r).booking(x).period(y, checkout(z)).duration();

should be read as

d = s.client(q, r).booking(x).period(y, checkout(z)).duration();

This makes the assignment consistent with the refactored code that follows it.

Thanks to: Toshiaki Kurokawa

dspinellis avatar Feb 10 '17 18:02 dspinellis