Skip to content
This repository was archived by the owner on Mar 9, 2022. It is now read-only.

Commit 209a76e

Browse files
committed
[LINT] error strings should not end with punctuation or a newline (ST1005)
1 parent 6585815 commit 209a76e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bootstrap_peers.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func DefaultBootstrapPeers() ([]peer.AddrInfo, error) {
3737
ps, err := ParseBootstrapPeers(DefaultBootstrapAddresses)
3838
if err != nil {
3939
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)
4141
}
4242
return ps, nil
4343
}

0 commit comments

Comments
 (0)