cleanup: resolve godot linter

This commit resolves godot linter issue
which says "Comment should end in a period (godot)".

Updates: #1586

Signed-off-by: Yati Padia <ypadia@redhat.com>
This commit is contained in:
Yati Padia
2021-07-08 20:29:34 +05:30
committed by mergify[bot]
parent 855f9080d1
commit 4a649fe17f
21 changed files with 44 additions and 44 deletions

View File

@ -25,10 +25,10 @@ import (
)
const (
// volIDVersion is the version number of volume ID encoding scheme
// volIDVersion is the version number of volume ID encoding scheme.
volIDVersion uint16 = 1
// RADOS namespace to store CSI specific objects and keys
// RADOS namespace to store CSI specific objects and keys.
radosNamespace = "csi"
)
@ -43,15 +43,15 @@ type Driver struct {
var (
// CSIInstanceID is the instance ID that is unique to an instance of CSI, used when sharing
// ceph clusters across CSI instances, to differentiate omap names per CSI instance
// ceph clusters across CSI instances, to differentiate omap names per CSI instance.
CSIInstanceID = "default"
// volJournal is used to maintain RADOS based journals for CO generated
// VolumeName to backing CephFS subvolumes
// VolumeName to backing CephFS subvolumes.
volJournal *journal.Config
// snapJournal is used to maintain RADOS based journals for CO generated
// SnapshotName to backing CephFS subvolumes
// SnapshotName to backing CephFS subvolumes.
snapJournal *journal.Config
)