Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in files #5944

Merged
merged 1 commit into from
Oct 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/kops/get_instancegroups.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ func igOutputTable(cluster *api.Cluster, instancegroups []*api.InstanceGroup, ou
t.AddColumn("MAX", func(c *api.InstanceGroup) string {
return int32PointerToString(c.Spec.MaxSize)
})
// SUBNETS is not not selected by default - not as useful as ZONES
// SUBNETS is not selected by default - not as useful as ZONES
return t.Render(instancegroups, os.Stdout, "NAME", "ROLE", "MACHINETYPE", "MIN", "MAX", "ZONES")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type Interface struct {
}

// New builds an Interface, with a specified Route53API implementation.
// This is useful for testing purposes, but also if we want an instance with with custom AWS options.
// This is useful for testing purposes, but also if we want an instance with custom AWS options.
func New(service stubs.Route53API) *Interface {
return &Interface{service}
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/model/pki.go
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ func (b *PKIModelBuilder) Build(c *fi.ModelBuilderContext) error {
Format: format,
})

// @note: we use this for mutual tls between between node and authorizer
// @note: we use this for mutual tls between node and authorizer
c.AddTask(&fitasks.Keypair{
Name: fi.String("node-authorizer-client"),
Subject: "cn=node-authorizer-client",
Expand Down