Default severity: warning
Name consecutive unnamed results that have the same type.
Bad
func bounds() (int, int)Good
func bounds() (min int, max int)Name consecutive unnamed results that have the same type.
Default severity: warning
Name consecutive unnamed results that have the same type.
func bounds() (int, int)func bounds() (min int, max int)