Skip to content

Commit

Permalink
fix an offense against the style guide. (#13835)
Browse files Browse the repository at this point in the history
* fix an offense against the style guide.

> Refer to API objects without saying “object,” unless omitting “object” leads to an awkward construction.

* fix another one.
  • Loading branch information
ptux authored and k8s-ci-robot committed Apr 16, 2019
1 parent 6ac9e62 commit 49b40db
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ In the `.yaml` file for the Kubernetes object you want to create, you'll need to
* `metadata` - Data that helps uniquely identify the object, including a `name` string, UID, and optional `namespace`

You'll also need to provide the object `spec` field. The precise format of the object `spec` is different for every Kubernetes object, and contains nested fields specific to that object. The [Kubernetes API Reference](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/) can help you find the spec format for all of the objects you can create using Kubernetes.
For example, the `spec` format for a `Pod` object can be found
For example, the `spec` format for a `Pod` can be found
[here](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/#podspec-v1-core),
and the `spec` format for a `Deployment` object can be found
and the `spec` format for a `Deployment` can be found
[here](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/#deploymentspec-v1-apps).

{{% /capture %}}
Expand Down

0 comments on commit 49b40db

Please sign in to comment.