Errata (sixth edition)

(Errata for the fifth edition are here.)
(Errata for the fourth edition are here.)
(Errata for the third edition are here.)
(Errata for the second edition are here.)

Chapter 5:

Section 5.5.5: (page 194 US ed; page 166 Global ed)

.reduce(0, (total, count) -> return total + count);
should read
.reduce(0, (total, count) -> total + count);

and (page 195 US ed; page 167 Global ed)

(total, count) -> return total + count
should read
(total, count) -> total + count

 
 

 

 

Back to main page