From 25a5086184c09228227071c2d8e9fdc35a75d51f Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Fri, 22 Jan 2021 09:29:37 -0500 Subject: [PATCH] rbd: fix typo in comment & improve comment consistency RBD was misspelled as RDB. While I was there I made the comments for both constants more consistently worded. Signed-off-by: John Mulligan --- rbd/mirror.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rbd/mirror.go b/rbd/mirror.go index 6c49b8e..46f2740 100644 --- a/rbd/mirror.go +++ b/rbd/mirror.go @@ -38,8 +38,8 @@ const ( // ImageMirrorModeJournal uses journaling to propagate RBD images between // ceph clusters. ImageMirrorModeJournal = ImageMirrorMode(C.RBD_MIRROR_IMAGE_MODE_JOURNAL) - // ImageMirrorModeSnapshot uses snapshot RDB images to propagate images - // between ceph clusters. + // ImageMirrorModeSnapshot uses snapshots to propagate RBD images between + // ceph clusters. ImageMirrorModeSnapshot = ImageMirrorMode(C.RBD_MIRROR_IMAGE_MODE_SNAPSHOT) )