internal/restic: Use errors.New when no formatting is needed

This commit is contained in:
greatroar 2022-10-14 14:07:20 +02:00
parent ba44666704
commit feb790f497
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ func SaveTree(ctx context.Context, r BlobSaver, t *Tree) (ID, error) {
return id, err
}
var ErrTreeNotOrdered = errors.Errorf("nodes are not ordered or duplicate")
var ErrTreeNotOrdered = errors.New("nodes are not ordered or duplicate")
type TreeJSONBuilder struct {
buf bytes.Buffer