We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2b8d62 commit 23d6f0cCopy full SHA for 23d6f0c
1 file changed
cmd/src/main.go
@@ -138,7 +138,7 @@ type config struct {
138
}
139
140
// configFromFile holds the config as read from the config file,
141
-// which is validated and parsed into the config struct
+// which is validated and parsed into the config struct.
142
type configFromFile struct {
143
Endpoint string `json:"endpoint"`
144
AccessToken string `json:"accessToken"`
@@ -317,7 +317,7 @@ func isValidUnixSocket(path string) (bool, error) {
317
if os.IsNotExist(err) {
318
return false, nil
319
320
- return false, errors.Newf("not a UNIX domain socket: %v: %w", path, err)
+ return false, errors.Newf("not a UNIX Domain Socket: %v: %w", path, err)
321
322
defer conn.Close()
323
0 commit comments