Synchronous spellcheck for pkg/volume/*

This commit is contained in:
aaronxu 2016-12-14 20:07:10 -08:00
parent db867c0c9d
commit 37f5d4d719
2 changed files with 2 additions and 2 deletions

View File

@ -200,7 +200,7 @@ func (cephfsVolume *cephfsMounter) GetAttributes() volume.Attributes {
// Checks prior to mount operations to verify that the required components (binaries, etc.)
// to mount the volume are available on the underlying node.
// If not, it returns an error
func (caphfsMounter *cephfsMounter) CanMount() error {
func (cephfsMounter *cephfsMounter) CanMount() error {
return nil
}

View File

@ -277,7 +277,7 @@ func (detacher *cinderDiskDetacher) Detach(deviceMountPath string, nodeName type
glog.Errorf("Error detaching volume %q: %v", volumeID, 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
}