From 89dec3f7a2d8a364ca2564ce4c62dc87aab15998 Mon Sep 17 00:00:00 2001 From: Vincent Fiduccia Date: Tue, 23 Jan 2018 16:02:22 -0700 Subject: [PATCH] Grammar nit --- services/controlplane.go | 2 +- services/etcd.go | 2 +- services/workerplane.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/services/controlplane.go b/services/controlplane.go index 6ace9c022..fecd0126c 100644 --- a/services/controlplane.go +++ b/services/controlplane.go @@ -78,6 +78,6 @@ func RemoveControlPlane(ctx context.Context, controlHosts []*hosts.Host, force b } } } - log.Infof(ctx, "[%s] Successfully teared down Controller Plane..", ControlRole) + log.Infof(ctx, "[%s] Successfully tore down Controller Plane..", ControlRole) return nil } diff --git a/services/etcd.go b/services/etcd.go index 412c53a75..ef1c2139f 100644 --- a/services/etcd.go +++ b/services/etcd.go @@ -53,7 +53,7 @@ func RemoveEtcdPlane(ctx context.Context, etcdHosts []*hosts.Host, force bool) e } } - log.Infof(ctx, "[%s] Successfully teared down Etcd Plane..", ETCDRole) + log.Infof(ctx, "[%s] Successfully tore down Etcd Plane..", ETCDRole) return nil } diff --git a/services/workerplane.go b/services/workerplane.go index 22461355c..3d7d74448 100644 --- a/services/workerplane.go +++ b/services/workerplane.go @@ -69,7 +69,7 @@ func RemoveWorkerPlane(ctx context.Context, workerHosts []*hosts.Host, force boo if err := removeSidekick(ctx, host); err != nil { return err } - log.Infof(ctx, "[%s] Successfully teared down Worker Plane..", WorkerRole) + log.Infof(ctx, "[%s] Successfully tore down Worker Plane..", WorkerRole) } return nil