Skip to content

Commit 26a0b64

Browse files
committed
fix capitalization
1 parent c45082e commit 26a0b64

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
@@ -140,7 +140,7 @@ type config struct {
140140
}
141141

142142
// configFromFile holds the config as read from the config file,
143-
// which is validated and parsed into the config struct
143+
// which is validated and parsed into the config struct.
144144
type configFromFile struct {
145145
Endpoint string `json:"endpoint"`
146146
AccessToken string `json:"accessToken"`
@@ -328,7 +328,7 @@ func isValidUnixSocket(path string) (bool, error) {
328328
if os.IsNotExist(err) {
329329
return false, nil
330330
}
331-
return false, errors.Newf("not a UNIX domain socket: %v: %w", path, err)
331+
return false, errors.Newf("not a UNIX Domain Socket: %v: %w", path, err)
332332
}
333333
defer conn.Close()
334334

0 commit comments

Comments
 (0)