Fix comment

This commit is contained in:
Daniel 2023-09-12 14:02:14 +02:00
parent e593d3ee45
commit c259c5dea5

View file

@ -127,7 +127,7 @@ func LoadAvg5() (loadAvg float64, ok bool) {
return 0, false
}
// LoadAvg15 returns the 5-minute average system load.
// LoadAvg15 returns the 15-minute average system load.
func LoadAvg15() (loadAvg float64, ok bool) {
if stat := getLoadAvg(); stat != nil {
return stat.Load15 / float64(runtime.NumCPU()), true