Skip to content

Commit 03f70fb

Browse files
authored
Merge pull request #1222 from mattnworb/mattbrown/book-grammar-fixes
docs/book: small grammar/spelling tweaks
2 parents fc60d25 + 5dba28f commit 03f70fb

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

docs/book/src/cronjob-tutorial/api-design.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ machines. You've probably noticed them when specifying resources requests
1717
and limits on pods in Kubernetes.
1818

1919
They conceptually work similar to floating point numbers: they have
20-
a significand, base, and exponent. Their serialize, human readable for
20+
a significand, base, and exponent. Their serializable and human readable format
2121
uses whole numbers and suffixes to specify values much the way we describe
2222
computer storage.
2323

docs/book/src/cronjob-tutorial/running-webhook.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You don't need to push the image to a remote container registry if you are using
2626
a kind cluster. You can directly load your local image to your kind cluster:
2727

2828
```bash
29-
kind load docker-image your-image-namge:your-tag
29+
kind load docker-image your-image-name:your-tag
3030
```
3131

3232
## Deploy Webhooks

docs/book/src/cronjob-tutorial/testdata/emptyapi.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
)
2727

2828
/*
29-
Next, we get types for the Spec and Status of our Kind. Kubernetes functions
29+
Next, we define types for the Spec and Status of our Kind. Kubernetes functions
3030
by reconciling desired state (`Spec`) with actual cluster state (other objects'
3131
`Status`) and external state, and then recording what it observed (`Status`).
3232
Thus, every *functional* object includes spec and status. A few types, like
@@ -49,15 +49,15 @@ type CronJobStatus struct {
4949
}
5050

5151
/*
52-
Next, we get the types corresponding to actual Kinds, `CronJob` and `CronJobList`.
52+
Next, we define the types corresponding to actual Kinds, `CronJob` and `CronJobList`.
5353
`CronJob` is our root type, and describes the `CronJob` kind. Like all Kubernetes objects, it contains
5454
`TypeMeta` (which describes API version and Kind), and also contains `ObjectMeta`, which holds things
5555
like name, namespace, and labels.
5656
5757
`CronJobList` is simply a container for multiple `CronJob`s. It's the Kind used in bulk operations,
5858
like LIST.
5959
60-
In general, we never modify either of these -- all modifications go in either Spec or Status
60+
In general, we never modify either of these -- all modifications go in either Spec or Status.
6161
6262
That little `+kubebuilder:object:root` comment is called a marker. We'll see
6363
more of them in a bit, but know that they act as extra metadata, telling

docs/book/src/cronjob-tutorial/testdata/emptycontroller.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import (
3333
)
3434

3535
/*
36-
Next, kubebuilder has scaffold out a basic reconciler struct for us.
36+
Next, kubebuilder has scaffolded a basic reconciler struct for us.
3737
Pretty much every reconciler needs to log, and needs to be able to fetch
3838
objects, so these are added out of the box.
3939
*/

docs/book/src/multiversion-tutorial/api-changes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ also need to make sure anything we add in v2 is supported in v2. In some
2323
cases, this means we need to add new fields to v1, but in our case, we
2424
won't have to, since we're not adding new functionality.
2525
26-
Keeping all that in mind, let's figure convert our example above to be
26+
Keeping all that in mind, let's convert our example above to be
2727
slightly more structured:
2828
2929
```yaml

0 commit comments

Comments
 (0)