Commit 1cd06fbc authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #38797 from aaron12134/spell-obsession

Automatic merge from submit-queue (batch tested with PRs 38772, 38797, 40732, 40740) Synchronous spellcheck for pkg/volume/* **What this PR does / why we need it**: Increase code readability **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # **Special notes for your reviewer**: Minor contribution **Release note**: ```release-note ```
parents 60c66dd3 37f5d4d7
...@@ -201,7 +201,7 @@ func (cephfsVolume *cephfsMounter) GetAttributes() volume.Attributes { ...@@ -201,7 +201,7 @@ func (cephfsVolume *cephfsMounter) GetAttributes() volume.Attributes {
// Checks prior to mount operations to verify that the required components (binaries, etc.) // Checks prior to mount operations to verify that the required components (binaries, etc.)
// to mount the volume are available on the underlying node. // to mount the volume are available on the underlying node.
// If not, it returns an error // If not, it returns an error
func (caphfsMounter *cephfsMounter) CanMount() error { func (cephfsMounter *cephfsMounter) CanMount() error {
return nil return nil
} }
......
...@@ -277,7 +277,7 @@ func (detacher *cinderDiskDetacher) Detach(deviceMountPath string, nodeName type ...@@ -277,7 +277,7 @@ func (detacher *cinderDiskDetacher) Detach(deviceMountPath string, nodeName type
glog.Errorf("Error detaching volume %q: %v", volumeID, err) glog.Errorf("Error detaching volume %q: %v", volumeID, err)
return err return err
} }
glog.Infof("detatached volume %q from instance %q", volumeID, instanceid) glog.Infof("detached volume %q from instance %q", volumeID, instanceid)
return nil return nil
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment