rbd: correct the code comment for ErrFlattenInProgress

Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
This commit is contained in:
Humble Chirammal 2020-10-19 18:56:57 +05:30 committed by mergify[bot]
parent 9dee064b77
commit 5c73f0e41b

View File

@ -32,6 +32,6 @@ var (
ErrInvalidVolID = errors.New("invalid VolumeID")
// ErrMissingStash is returned when the image metadata stash file is not found.
ErrMissingStash = errors.New("missing stash")
// ErrFlattenInProgress is returned when flatten is in progess for an image.
// ErrFlattenInProgress is returned when flatten is in progress for an image.
ErrFlattenInProgress = errors.New("flatten in progress")
)