Error string should not be capitalized or end with punctuation mark
错误字符串不应该大写或以标点符号结束
当我们在 Golang 中使用 errors.New("Aaa.") 或者 fmt.Errorf("Aaa.") 形式返回 error 信息时,文字内容不应该以大写字母开头或者标点符号结尾。
只有按照警告的去修改 去掉大写字母开头 和 标点符号结尾 errors.New("aaa")
Error string should not be capitalized or end with punctuation mark
错误字符串不应该大写或以标点符号结束
当我们在 Golang 中使用 errors.New("Aaa.") 或者 fmt.Errorf("Aaa.") 形式返回 error 信息时,文字内容不应该以大写字母开头或者标点符号结尾。
只有按照警告的去修改 去掉大写字母开头 和 标点符号结尾 errors.New("aaa")