Created
November 15, 2016 15:04
-
-
Save StabbyCutyou/5e08c5eb0f8c8a5b4633fb0a70cf9dba to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "errors" | |
func main() { | |
_ = errors.New("puncs, no caps.") // lint catches it | |
_ = errors.New("Caps, puncs.") // lint catches it | |
_ = errors.New("Caps, no puncs") // lint doesn't catch it | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment