diff options
Diffstat (limited to 'adapter/stats_api.go')
-rw-r--r-- | adapter/stats_api.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/adapter/stats_api.go b/adapter/stats_api.go index d67434c..90dbeb3 100644 --- a/adapter/stats_api.go +++ b/adapter/stats_api.go @@ -113,7 +113,7 @@ func (n Name) String() string { return string(n) } -// Data represents some type of stat which is usually defined by StatType. +// Stat represents some type of stat which is usually defined by StatType. type Stat interface { // IsZero returns true if all of its values equal to zero. IsZero() bool @@ -205,7 +205,7 @@ func ReduceSimpleCounterStatIndex(s SimpleCounterStat, i int) uint64 { return val } -// ReduceSimpleCounterStatIndex returns reduced CombinedCounterStat s for index i. +// ReduceCombinedCounterStatIndex returns reduced CombinedCounterStat s for index i. func ReduceCombinedCounterStatIndex(s CombinedCounterStat, i int) [2]uint64 { var val [2]uint64 for _, w := range s { |