From 5c73f0e41bba455a9129eb143108699c48b89577 Mon Sep 17 00:00:00 2001 From: Humble Chirammal Date: Mon, 19 Oct 2020 18:56:57 +0530 Subject: [PATCH] rbd: correct the code comment for ErrFlattenInProgress Signed-off-by: Humble Chirammal --- internal/rbd/errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/rbd/errors.go b/internal/rbd/errors.go index 1c865aac6..15916e15d 100644 --- a/internal/rbd/errors.go +++ b/internal/rbd/errors.go @@ -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") )