Lemoncode / webpack-1.x-by-sample

Learn webpack 1.x by sample
http://www.lemoncode.net/
MIT License
27 stars 17 forks source link

One function need to be resolved #29

Closed crsanti closed 8 years ago

crsanti commented 8 years ago

As Victor Fernández at slack pointed to, line 43 should be changed from: const averageScore = averageService(scores); to: const averageScore = getAvg(scores);

I forgot to change it before :sweat_smile: .

brauliodiez commented 8 years ago

Good catch !