fix an offense against the style guide. (#13835)

* 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.
pull/13837/head
Shuang Wang 2019-04-16 12:13:04 +09:00 committed by Kubernetes Prow Robot
parent 6ac9e62b1f
commit 49b40dbbfa
1 changed files with 2 additions and 2 deletions

View File

@ -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 %}}