@cryptotaxi247 / kubo / commits / e7bb83376

go-ipfs-config: [LINT] error strings should not end with punctuation or a newline (ST1005)

Michael Burns committed May 14, 2021 at 14:31 UTC e7bb833760c70227ead661be55114181d5ff1030
1 file changed +1 -1
config/bootstrap_peers.go
+1 -1
@@ -37,7 +37,7 @@ func DefaultBootstrapPeers() ([]peer.AddrInfo, error) {
37 ps, err := ParseBootstrapPeers(DefaultBootstrapAddresses)
38 if err != nil {
39 return nil, fmt.Errorf(`failed to parse hardcoded bootstrap peers: %s
40 -This is a problem with the ipfs codebase. Please report it to the dev team.`, err)
40 +This is a problem with the ipfs codebase. Please report it to the dev team`, err)
41 }
42 return ps, nil
43 }