Skip to content

Commit 6456c91

Browse files
committed
📖 fix typos
1 parent ef5d3c4 commit 6456c91

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/book/src/cronjob-tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ building up to something pretty full-featured.
88

99
Let's pretend (and sure, this is a teensy bit contrived) that we've
1010
finally gotten tired of the maintenance burden of the non-Kubebuilder
11-
implementation of the CronJob controller in Kuberntes, and we'd like to
11+
implementation of the CronJob controller in Kubernetes, and we'd like to
1212
rewrite it using KubeBuilder.
1313

1414
The job (no pun intended) of the *CronJob* controller is to run one-off
1515
tasks on the Kubernetes cluster at regular intervals. It does the by
16-
bulding on top of the *Job* controller, whose task is to run one-off tasks
16+
building on top of the *Job* controller, whose task is to run one-off tasks
1717
once, seeing them to completion.
1818

1919
Instead of trying to tackle rewriting the Job controller as well, we'll

docs/book/src/quick-start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ kubebuilder create api --group webapp --version v1 --kind Guestbook
6060
The will create the files `api/v1/guestbook_types.go` and
6161
`controller/guestbook_controller.go` for you to edit.
6262

63-
**Optional:** Edit the API definition or the reconcilation business logic.
63+
**Optional:** Edit the API definition or the reconciliation business logic.
6464
For more on this see [What is
6565
a Controller](TODO.md) and [What is
6666
a Resource](TODO.md)
@@ -110,7 +110,7 @@ Deploy the controller to the cluster:
110110
make deploy
111111
```
112112

113-
If you encouter RBAC errors, you may need to grant yourself cluster-admin
113+
If you encounter RBAC errors, you may need to grant yourself cluster-admin
114114
privileges:
115115

116116
<!-- TODO(directxman12): fill this in -->

0 commit comments

Comments
 (0)