diff --git a/examples/rate-limiting/rate-limiting.go b/examples/rate-limiting/rate-limiting.go index 668026d..44c76b1 100644 --- a/examples/rate-limiting/rate-limiting.go +++ b/examples/rate-limiting/rate-limiting.go @@ -47,7 +47,7 @@ func main() { } // Every 200 milliseconds we'll try to add a new - // value to `limiterBursty`, up to its limit of 3. + // value to `burstyLimiter`, up to its limit of 3. go func() { for t := range time.Tick(time.Millisecond * 200) { burstyLimiter <- t