From 5a148fdff10a9ad7dd8929c12210661b344ef008 Mon Sep 17 00:00:00 2001 From: dacapoday Date: Mon, 13 Jan 2020 13:51:36 +0800 Subject: [PATCH] [typo]fix Translation error: 123_web repeat (#18523) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 无效。 --- content/zh/docs/concepts/services-networking/service.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/zh/docs/concepts/services-networking/service.md b/content/zh/docs/concepts/services-networking/service.md index 0b304d7b82..77eb935e69 100644 --- a/content/zh/docs/concepts/services-networking/service.md +++ b/content/zh/docs/concepts/services-networking/service.md @@ -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 >}}