Skip to content

Commit db47727

Browse files
committed
fix(docs): correct typo in comments across multiple files
correct "it's" to "its" in comments to ensure grammatical accuracy in e2e test files and cronjob tutorial implementation.
1 parent 06c0575 commit db47727

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/book/src/cronjob-tutorial/testdata/project/test/e2e/e2e_suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ var _ = BeforeSuite(func() {
7171

7272
// The tests-e2e are intended to run on a temporary cluster that is created and destroyed for testing.
7373
// To prevent errors when tests run in environments with Prometheus already installed,
74-
// we check for it's presence before execution.
74+
// we check for its presence before execution.
7575
// Setup Prometheus before the suite if not already installed
7676
By("checking if prometheus is installed already")
7777
isPrometheusOperatorAlreadyInstalled = utils.IsPrometheusCRDsInstalled()

docs/book/src/multiversion-tutorial/testdata/project/test/e2e/e2e_suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ var _ = BeforeSuite(func() {
7171

7272
// The tests-e2e are intended to run on a temporary cluster that is created and destroyed for testing.
7373
// To prevent errors when tests run in environments with Prometheus already installed,
74-
// we check for it's presence before execution.
74+
// we check for its presence before execution.
7575
// Setup Prometheus before the suite if not already installed
7676
By("checking if prometheus is installed already")
7777
isPrometheusOperatorAlreadyInstalled = utils.IsPrometheusCRDsInstalled()

hack/docs/internal/cronjob-tutorial/e2e_implementation.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ if !isPrometheusOperatorAlreadyInstalled {
3636

3737
const checkPrometheusInstalled = `
3838
// To prevent errors when tests run in environments with Prometheus already installed,
39-
// we check for it's presence before execution.
39+
// we check for its presence before execution.
4040
// Setup Prometheus before the suite if not already installed
4141
By("checking if prometheus is installed already")
4242
isPrometheusOperatorAlreadyInstalled = utils.IsPrometheusCRDsInstalled()

0 commit comments

Comments
 (0)