aboutsummaryrefslogtreecommitdiffstats
path: root/config/config.go
diff options
context:
space:
mode:
authorAbhinav Gupta <mail@abhinavg.net>2021-12-04 15:16:09 -0800
committerAbhinav Gupta <mail@abhinavg.net>2021-12-04 15:40:53 -0800
commit0dcebfb72bbdaf01554f938402e699d67937c5a0 (patch)
tree512b1d1651109b3008ff610cf2abfa8adc1c211b /config/config.go
parente4fcd078d42e945581616855ab78d8b7ed12df6c (diff)
downloadgo-git-0dcebfb72bbdaf01554f938402e699d67937c5a0.tar.gz
error strings: Don't capitalize, use periods, or newlines
Per [Go Code Review Comments][1], > Error strings should not be capitalized (unless beginning with proper > nouns or acronyms) or end with punctuation staticcheck's [ST1005][2] also complains about these. For example, ``` object_walker.go:63:10: error strings should not be capitalized (ST1005) object_walker.go:101:10: error strings should not be capitalized (ST1005) object_walker.go:101:10: error strings should not end with punctuation or a newline (ST1005) plumbing/format/commitgraph/file.go:17:26: error strings should not be capitalized (ST1005) ``` This fixes all instances of this issue reported by staticcheck. [1]: https://github.com/golang/go/wiki/CodeReviewComments#error-strings [2]: https://staticcheck.io/docs/checks/#ST1005
Diffstat (limited to 'config/config.go')
-rw-r--r--config/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/config.go b/config/config.go
index 1aee25a..1462c0c 100644
--- a/config/config.go
+++ b/config/config.go
@@ -150,7 +150,7 @@ func ReadConfig(r io.Reader) (*Config, error) {
// config file to the given scope, a empty one is returned.
func LoadConfig(scope Scope) (*Config, error) {
if scope == LocalScope {
- return nil, fmt.Errorf("LocalScope should be read from the a ConfigStorer.")
+ return nil, fmt.Errorf("LocalScope should be read from the a ConfigStorer")
}
files, err := Paths(scope)