From bd74140174597824729d66203558e10eef5b222e Mon Sep 17 00:00:00 2001 From: nxshock Date: Tue, 8 Mar 2022 18:00:09 +0500 Subject: [PATCH] Fix speed filed name --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9336f4d..fc5b387 100644 --- a/README.md +++ b/README.md @@ -29,8 +29,9 @@ func f(i int) error { func main() { worker := gwp.New(4) // Create pool with specified number of workers + worker.ShowProgress = true // Enable progress indicator - worker.ShowProgress = true // Show processing speed in progress indicator + worker.ShowSpeed = true // Show processing speed in progress indicator worker.EstimateCount = 100 // Set total number on jobs to calculate ETA for i := 0; i < 100; i++ {