Merge pull request #5099 from AdamDang/patch-15

Typo fix: acutally->actually/overide->override/to to->to
This commit is contained in:
k8s-ci-robot 2018-05-04 04:47:50 -07:00 committed by GitHub
commit 8bf11ec608
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -1132,7 +1132,7 @@ func RunCreateCluster(f *util.Factory, out io.Writer, c *CreateClusterOptions) e
}
}
// Can we acutally get to this if??
// Can we actually get to this if??
if targetName != "" {
if isDryrun {
fmt.Fprintf(out, "Previewing changes that will be made:\n\n")

View File

@ -176,7 +176,7 @@ func (c *ApplyClusterCmd) Run() error {
case Phase(""):
// Everything ... the default
// until we implement finding assets we need to to Ignore them
// until we implement finding assets we need to Ignore them
stageAssetsLifecycle = fi.LifecycleIgnore
case PhaseStageAssets:
networkLifecycle = fi.LifecycleIgnore

View File

@ -40,7 +40,7 @@ const (
// HasLifecycle indicates that the task has a Lifecycle
type HasLifecycle interface {
GetLifecycle() *Lifecycle
// SetLifecycle is used to override a tasks lifecycle. If a lifecycle overide exists for a specific task name, then the
// SetLifecycle is used to override a tasks lifecycle. If a lifecycle override exists for a specific task name, then the
// lifecycle is modified.
SetLifecycle(lifecycle Lifecycle)
}