[typo]fix The fourth example translation error (#18553)

English version:

The fourth example selects all resources without a label with key `partition`; no values are checked.

Chinese version:

第三个示例选择了所有没有 `partition` 标签的资源;没有校验它的值。

Fix version:

第四个示例选择了所有没有 `partition` 标签的资源;没有校验它的值。
pull/18566/head
kurisu 2020-01-09 19:41:44 +08:00 committed by Kubernetes Prow Robot
parent 391eef3c2f
commit c03b44bc04
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ The third example selects all resources including a label with key `partition`;
The fourth example selects all resources without a label with key `partition`; no values are checked.
-->
个示例选择了所有没有 `partition` 标签的资源;没有校验它的值。
个示例选择了所有没有 `partition` 标签的资源;没有校验它的值。
<!--
Similarly the comma separator acts as an _AND_ operator. So filtering resources with a `partition` key (no matter the value) and with `environment` different than  `qa` can be achieved using `partition,environment notin (qa)`.