[FAQ] Golang error strings should not be capitalized or end with punctuation
当我们在 Golang 中使用 errors.New("Aaa.") 形式返回 error 信息时,文字内容不应该以大写字母开头或者标点符号结尾。
所以这样是可以的 errors.New("aaa")
Refer:Golang常见错误
当我们在 Golang 中使用 errors.New("Aaa.") 形式返回 error 信息时,文字内容不应该以大写字母开头或者标点符号结尾。
所以这样是可以的 errors.New("aaa")
Refer:Golang常见错误