ConcurrentProgrammingWithGo
ConcurrentProgrammingWithGo copied to clipboard
fix downloadPages func in listing 9-11
in listing 9_11 : downloadPages was sending all response bodies back to first channel of Pages slice , so i just removed the loop so per call downloadPages sends back channel containing single response body , now each channel in Pages slice contain response body.