Default severity: warning
Place error last in result lists.
Bad
func Load() (error, string)Good
func Load() (string, error)Place error last in result lists.
Default severity: warning
Place error last in result lists.
func Load() (error, string)func Load() (string, error)