diff --git a/README_en.md b/README_en.md index 9ed48b4..78e09a6 100644 --- a/README_en.md +++ b/README_en.md @@ -251,7 +251,8 @@ var _ = stats.Bind("token", caches...) #### Get statistics ``` go stats.Stats().Range(func(k, v interface{}) bool { - fmt.Printf("stats: %s %+v\n", k, v) // k is name of pool, v is type of (*stats.StatsNode) that stats count of events use `HitRate` method can know cache hit rate + fmt.Printf("stats: %s %+v\n", k, v) // k is name of pool, v is type of (*stats.StatsNodeļ¼‰ + // StatsNode stores count of events, use `HitRate` method can know cache hit rate return true }) ```