A Common-Sense Guide to Data Structures and Algorithms, Second Edition: wrong current_sum in greatest sum

Chapter 19 contains:

Finally, we reach the -9. This would make the current sum -4,

Since the current sum is 6 before encountering -9, it should be -3 instead (6 + (-9) = -3).