Concurrent Data Processing in Elixir: Incorrect Description of handle_events behavior: (page 81)

The text currently reads:

“ This means that the handle_events/3 callback will be called with a list of 500 events initially, followed by another 500 ”

It should read:
“ This means that the handle_events/3 callback will be called with a list of 1000 events initially, followed by another 500 ”

The graph below this paragraph show the correct flow of information, the text just doesn’t align with it.