Skip to content

Commit 7c4274b

Browse files
committed
fix error capitalization
Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 24ce1b9 commit 7c4274b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

zfs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ func (s *snapshotter) usage(ctx context.Context, key string) (snapshots.Usage, e
141141
}
142142

143143
if int64(sDataset.Used) > maxSnapshotSize {
144-
return snapshots.Usage{}, fmt.Errorf("Dataset size exceeds maximum snapshot size of %d bytes", maxSnapshotSize)
144+
return snapshots.Usage{}, fmt.Errorf("dataset size exceeds maximum snapshot size of %d bytes", maxSnapshotSize)
145145
}
146146

147147
usage = snapshots.Usage{

0 commit comments

Comments
 (0)