Skip to content

Commit

Permalink
Grammar nit
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent99 authored and Denise committed Jan 24, 2018
1 parent b78ce89 commit 89dec3f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion services/controlplane.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
2 changes: 1 addition & 1 deletion services/etcd.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down
2 changes: 1 addition & 1 deletion services/workerplane.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 89dec3f

Please sign in to comment.