Skip to content

Instantly share code, notes, and snippets.

@pinzolo
Last active June 1, 2016 13:08
Show Gist options
  • Save pinzolo/dcc2f037adeade3376ab8ae3ee5bb56d to your computer and use it in GitHub Desktop.
Save pinzolo/dcc2f037adeade3376ab8ae3ee5bb56d to your computer and use it in GitHub Desktop.
Goが出すドキュメントのためのコメントへの警告
package main
// 設定情報を格納する ← メッセージ出しやがる
type Config struct {}
// ConfigError は設定情報に不備があった場合のエラー情報を格納する ← 推奨しているらしい
type ConfigError struct {}
// Fooを返す ← メッセージ出しやがる
func GetFoo() string {
return "Foo"
}
// GetBar は Bar を返す ← 推奨しているらしい
func GetBar() string {
return "Bar"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment