We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c45082e commit 26a0b64Copy full SHA for 26a0b64
1 file changed
cmd/src/main.go
@@ -140,7 +140,7 @@ type config struct {
140
}
141
142
// configFromFile holds the config as read from the config file,
143
-// which is validated and parsed into the config struct
+// which is validated and parsed into the config struct.
144
type configFromFile struct {
145
Endpoint string `json:"endpoint"`
146
AccessToken string `json:"accessToken"`
@@ -328,7 +328,7 @@ func isValidUnixSocket(path string) (bool, error) {
328
if os.IsNotExist(err) {
329
return false, nil
330
331
- 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)
332
333
defer conn.Close()
334
0 commit comments