Skip to content

Commit

Permalink
fix(general): typo in error message (kopia#4072)
Browse files Browse the repository at this point in the history
  • Loading branch information
julio-lopez authored Aug 24, 2024
1 parent 87766e3 commit 6902738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repo/content/committed_content_index_disk_cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func (c *diskCommittedContentIndexCache) openIndex(ctx context.Context, indexBlo
ndx, err := index.Open(f, closeMmap, c.v1PerContentOverhead)
if err != nil {
closeMmap() //nolint:errcheck
return nil, errors.Wrapf(err, "error openind index from %v", indexBlobID)
return nil, errors.Wrapf(err, "error opening index from %v", indexBlobID)
}

return ndx, nil
Expand Down

0 comments on commit 6902738

Please sign in to comment.