From f6ce8f5789481daaa637c3943bf98e72b43fa4cd Mon Sep 17 00:00:00 2001 From: yuxiaobo Date: Thu, 5 Sep 2019 17:59:36 +0800 Subject: [PATCH] update spelling mistakes --- CHANGELOG-1.4.md | 2 +- pkg/controller/deployment/deployment_controller_test.go | 2 +- pkg/volume/scaleio/sio_mgr.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG-1.4.md b/CHANGELOG-1.4.md index 6deab9cd3d2..475a14e26c8 100644 --- a/CHANGELOG-1.4.md +++ b/CHANGELOG-1.4.md @@ -738,7 +738,7 @@ binary | sha256 hash - **Simplified User Experience** - Easier to get a cluster up and running (eg: `kubeadm`, intra-cluster bootstrapping) - Easier to understand a cluster (eg: API audit logs, server-based API defaults) -- **Stateful Appplication Support** +- **Stateful Application Support** - Enhanced persistence capabilities (eg: `StorageClasses`, new volume plugins) - New resources and scheduler features (eg: `ScheduledJob` resource, pod/node affinity/anti-affinity) - **Cluster Federation** diff --git a/pkg/controller/deployment/deployment_controller_test.go b/pkg/controller/deployment/deployment_controller_test.go index 2638599c9e3..3c63ab7be7b 100644 --- a/pkg/controller/deployment/deployment_controller_test.go +++ b/pkg/controller/deployment/deployment_controller_test.go @@ -330,7 +330,7 @@ func TestDontSyncDeploymentsWithEmptyPodSelector(t *testing.T) { f.objects = append(f.objects, d) // Normally there should be a status update to sync observedGeneration but the fake - // deployment has no generation set so there is no action happpening here. + // deployment has no generation set so there is no action happening here. f.run(testutil.GetKey(d, t)) } diff --git a/pkg/volume/scaleio/sio_mgr.go b/pkg/volume/scaleio/sio_mgr.go index e63b58da188..1dc662a4c85 100644 --- a/pkg/volume/scaleio/sio_mgr.go +++ b/pkg/volume/scaleio/sio_mgr.go @@ -130,7 +130,7 @@ func (m *sioMgr) AttachVolume(volName string, multipleMappings bool) (string, er // handle vol if already attached if len(vol.MappedSdcInfo) > 0 { if m.isSdcMappedToVol(iid, vol) { - klog.V(4).Info(log("skippping attachment, volume %s already attached to sdc %s", volName, iid)) + klog.V(4).Info(log("skipping attachment, volume %s already attached to sdc %s", volName, iid)) return devs[vol.ID], nil } }