refactor: oop log parser names

This commit is contained in:
Inanc Gumus
2019-08-28 12:46:43 +03:00
parent aff765c4a8
commit 55a480a016
4 changed files with 17 additions and 11 deletions

View File

@@ -37,7 +37,7 @@ func (s *textReport) digest(results iterator) error {
var total result
results.each(func(r result) {
total = total.add(r)
total = total.sum(r)
write(w, "%s\t%s\t%d\t%d\n", r.domain, r.page, r.visits, r.uniques)
})