[typo]fix Translation error: 123_web repeat (#18523)

English version:

For example, the names 123-abc and web are valid, but 123_abc and -web are not.

Chinese version:

例如,名称 123_abc 和 web 有效,但是 123_abc 和 -web 无效。

Fix version:

例如,名称 123-abc 和 web 有效,但是 123_abc 和 -web 无效。
This commit is contained in:
dacapoday
2020-01-13 13:51:36 +08:00
committed by Kubernetes Prow Robot
parent e01fd4d196
commit 5a148fdff1
@@ -596,7 +596,7 @@ For example, the names `123-abc` and `web` are valid, but `123_abc` and `-web` a
与一般的Kubernetes名称一样,端口名称只能包含 小写字母数字字符 和 `-`。 端口名称还必须以字母数字字符开头和结尾。
例如,名称 `123_abc``web` 有效,但是 `123_abc``-web` 无效。
例如,名称 `123-abc``web` 有效,但是 `123_abc``-web` 无效。
{{< /note >}}
<!--