Skip to content

Commit ad6896c

Browse files
committed
Fix Japanese translation of "Interpreted" in reference/kubectl/jsonpath
1 parent 96ca298 commit ad6896c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/ja/docs/reference/kubectl/jsonpath.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ kubectlでは、JSONPathの式を使うことで、JSONオブジェクトの特
7575
`[,]` | 和集合 | `{.items[*]['metadata.name', 'status.capacity']}` | `127.0.0.1 127.0.0.2 map[cpu:4] map[cpu:8]`
7676
`?()` | フィルター | `{.users[?(@.name=="e2e")].user.password}` | `secret`
7777
`range`, `end` | リストの反復 | `{range .items[*]}[{.metadata.name}, {.status.capacity}] {end}` | `[127.0.0.1, map[cpu:4]] [127.0.0.2, map[cpu:8]]`
78-
`''` | (解釈済みの)文字列をクォートする | `{range .items[*]}{.metadata.name}{'\t'}{end}` | `127.0.0.1 127.0.0.2`
78+
`''` | 解釈済みの文字列をクォートする | `{range .items[*]}{.metadata.name}{'\t'}{end}` | `127.0.0.1 127.0.0.2`
7979

8080
`kubectl`とJSONPathの式を使った例:
8181

0 commit comments

Comments
 (0)