Skip to content

Commit 6c52e60

Browse files
authored
Merge pull request #14882 from Abirdcfly/master
chore: remove duplicate word in comments
2 parents dc92093 + 8617c50 commit 6c52e60

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ out/unittest.json: $(SOURCE_FILES) $(GOTEST_FILES)
409409
-coverprofile=out/coverage.out -json > out/unittest.json
410410
out/coverage.out: out/unittest.json
411411

412-
# Generate go test report (from gotest) as a a HTML page
412+
# Generate go test report (from gotest) as a HTML page
413413
out/unittest.html: out/unittest.json
414414
$(if $(quiet),@echo " REPORT $@")
415415
$(Q)go-test-report < $< -o $@

pkg/minikube/bootstrapper/bsutil/kverify/kverify.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const (
4343

4444
// vars related to the --wait flag
4545
var (
46-
// DefaultComponents is map of the the default components to wait for
46+
// DefaultComponents is map of the default components to wait for
4747
DefaultComponents = map[string]bool{APIServerWaitKey: true, SystemPodsWaitKey: true}
4848
// NoWaitComponents is map of components to wait for if specified 'none' or 'false'
4949
NoComponents = map[string]bool{APIServerWaitKey: false, SystemPodsWaitKey: false, DefaultSAWaitKey: false, AppsRunningKey: false, NodeReadyKey: false, KubeletKey: false, ExtraKey: false}

pkg/minikube/constants/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const (
6969
ClusterDNSDomain = "cluster.local"
7070
// DefaultServiceCIDR is The CIDR to be used for service cluster IPs
7171
DefaultServiceCIDR = "10.96.0.0/12"
72-
// HostAlias is a DNS alias to the the container/VM host IP
72+
// HostAlias is a DNS alias to the container/VM host IP
7373
HostAlias = "host.minikube.internal"
7474
// ControlPlaneAlias is a DNS alias pointing to the apiserver frontend
7575
ControlPlaneAlias = "control-plane.minikube.internal"

0 commit comments

Comments
 (0)