Skip to content

Commit 45105bc

Browse files
authored
Merge pull request #2821 from rpriyanshu9/nit-fix
📖 : fix typo in tutorial ( replace date with data )
2 parents e724e72 + bebf3d5 commit 45105bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/book/src/cronjob-tutorial/testdata/project/controllers/cronjob_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ func (r *CronJobReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ct
248248
log.V(1).Info("job count", "active jobs", len(activeJobs), "successful jobs", len(successfulJobs), "failed jobs", len(failedJobs))
249249

250250
/*
251-
Using the date we've gathered, we'll update the status of our CRD.
251+
Using the data we've gathered, we'll update the status of our CRD.
252252
Just like before, we use our client. To specifically update the status
253253
subresource, we'll use the `Status` part of the client, with the `Update`
254254
method.

docs/book/src/multiversion-tutorial/testdata/project/controllers/cronjob_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ func (r *CronJobReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ct
239239
log.V(1).Info("job count", "active jobs", len(activeJobs), "successful jobs", len(successfulJobs), "failed jobs", len(failedJobs))
240240

241241
/*
242-
Using the date we've gathered, we'll update the status of our CRD.
242+
Using the data we've gathered, we'll update the status of our CRD.
243243
Just like before, we use our client. To specifically update the status
244244
subresource, we'll use the `Status` part of the client, with the `Update`
245245
method.

0 commit comments

Comments
 (0)