5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[備忘] error strings should not be capitalized 対応

Posted at
fmt.Errorf("This method is not implemented")

って書いたらerror strings should not be capitalized (ST1005)go-staticcheckっておこられた。

問題は最初の一文字目が大文字のところらしい。

fmt.Errorf("this method is not implemented")

これでなおった。

5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?