Skip to content

Commit

Permalink
Merge pull request #5885 from mooncak/fix_typos
Browse files Browse the repository at this point in the history
Fix typos issues
  • Loading branch information
k8s-ci-robot authored Oct 9, 2018
2 parents d7b295d + 6d9fdab commit 12930a6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/apireference/build/scroll.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ $(document).ready(function() {
currL1Nav = getNavNode(activeSection.token);
currL1Nav.show('fast');
}
// If active active is not the same as previous, hide previous L1Nav and show current L1Nav; set previous to current
// If active is not the same as previous, hide previous L1Nav and show current L1Nav; set previous to current
else if (activeSection.token !== prevSectionToken) {
prevL1Nav = getNavNode(prevSectionToken);
currL1Nav = getNavNode(activeSection.token);
Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/kops/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ type LoadBalancerAccessSpec struct {
AdditionalSecurityGroups []string `json:"additionalSecurityGroups,omitempty"`
// UseForInternalApi indicates wether the LB should be used by the kubelet
UseForInternalApi bool `json:"useForInternalApi,omitempty"`
// SSLCertificate allows you to specify the ACM cert to be used the the LB
// SSLCertificate allows you to specify the ACM cert to be used the LB
SSLCertificate string `json:"sslCertificate,omitempty"`
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/kops/instancegroup.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ var AllInstanceGroupRoles = []InstanceGroupRole{
type InstanceGroupSpec struct {
// Type determines the role of instances in this group: masters or nodes
Role InstanceGroupRole `json:"role,omitempty"`
// Image is the instance instance (ami etc) we should use
// Image is the instance (ami etc) we should use
Image string `json:"image,omitempty"`
// MinSize is the minimum size of the pool
MinSize *int32 `json:"minSize,omitempty"`
Expand Down
2 changes: 1 addition & 1 deletion pkg/systemd/unit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func TestUnitFileExtensionValid(t *testing.T) {
})
}

// Add two testcases for no extension and and invalid extension.
// Add two testcases for no extension and invalid extension.
testcases = append(testcases, testCase{
"invalid extension: (no extension)",
"my-unit",
Expand Down

0 comments on commit 12930a6

Please sign in to comment.