Skip to content

Commit 23d6f0c

Browse files
committed
fix capitalization
1 parent e2b8d62 commit 23d6f0c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cmd/src/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ type config struct {
138138
}
139139

140140
// configFromFile holds the config as read from the config file,
141-
// which is validated and parsed into the config struct
141+
// which is validated and parsed into the config struct.
142142
type configFromFile struct {
143143
Endpoint string `json:"endpoint"`
144144
AccessToken string `json:"accessToken"`
@@ -317,7 +317,7 @@ func isValidUnixSocket(path string) (bool, error) {
317317
if os.IsNotExist(err) {
318318
return false, nil
319319
}
320-
return false, errors.Newf("not a UNIX domain socket: %v: %w", path, err)
320+
return false, errors.Newf("not a UNIX Domain Socket: %v: %w", path, err)
321321
}
322322
defer conn.Close()
323323

0 commit comments

Comments
 (0)