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 <jmulligan@redhat.com>
This commit is contained in:
John Mulligan 2021-01-22 09:29:37 -05:00 committed by mergify[bot]
parent 1e3b9a2cd9
commit 25a5086184
1 changed files with 2 additions and 2 deletions

View File

@ -38,8 +38,8 @@ const (
// ImageMirrorModeJournal uses journaling to propagate RBD images between // ImageMirrorModeJournal uses journaling to propagate RBD images between
// ceph clusters. // ceph clusters.
ImageMirrorModeJournal = ImageMirrorMode(C.RBD_MIRROR_IMAGE_MODE_JOURNAL) ImageMirrorModeJournal = ImageMirrorMode(C.RBD_MIRROR_IMAGE_MODE_JOURNAL)
// ImageMirrorModeSnapshot uses snapshot RDB images to propagate images // ImageMirrorModeSnapshot uses snapshots to propagate RBD images between
// between ceph clusters. // ceph clusters.
ImageMirrorModeSnapshot = ImageMirrorMode(C.RBD_MIRROR_IMAGE_MODE_SNAPSHOT) ImageMirrorModeSnapshot = ImageMirrorMode(C.RBD_MIRROR_IMAGE_MODE_SNAPSHOT)
) )