Skip to content

Commit

Permalink
Merge pull request #92 from ipfs/fix-staticcheck
Browse files Browse the repository at this point in the history
fix staticcheck
  • Loading branch information
marten-seemann committed May 19, 2021
2 parents 6881dfd + 1deccc4 commit 12d757f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shard.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func ParseShardFunc(str string) (*ShardIdV1, error) {

version := parts[0]
if version != "v1" {
return nil, fmt.Errorf("expected 'v1' for version string got: %s\n", version)
return nil, fmt.Errorf("expected 'v1' for version string got: %s", version)
}

funName := parts[1]
Expand Down

0 comments on commit 12d757f

Please sign in to comment.