Skip to content

Commit c8f65e2

Browse files
authored
Fix typo in closing tag for some code blocks (#3196)
1 parent db01f10 commit c8f65e2

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

mesh/v1alpha1/istio.mesh.v1alpha1.pb.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mesh/v1alpha1/proxy.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mesh/v1alpha1/proxy.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ message ProxyConfig {
680680
// If disabled, this header will not be set. If it is already present, it will be preserved.
681681
// This header is enabled by default if not configured.
682682
AttemptCount attempt_count = 4;
683-
// Controls various `X-Envoy-*` headers, such as `X-Envoy-Overloaded` and `X-Envoy-Upstream-Service-Time. If enabled,
683+
// Controls various `X-Envoy-*` headers, such as `X-Envoy-Overloaded` and `X-Envoy-Upstream-Service-Time`. If enabled,
684684
// these headers will be included.
685685
// If disabled, these headers will not be set. If they are already present, they will be preserved.
686686
// See the [Envoy documentation](https://www.envoyproxy.io/docs/envoy/latest/api-v3/extensions/filters/http/router/v3/router.proto#envoy-v3-api-field-extensions-filters-http-router-v3-router-suppress-envoy-headers) for more details.

security/v1beta1/authorization_policy.pb.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

security/v1beta1/authorization_policy.pb.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

security/v1beta1/authorization_policy.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,8 +526,8 @@ message Operation {
526526
// - `/foo/{*}` matches `/foo/bar` but not `/foo/bar/baz`
527527
// - `/foo/{**}/` matches `/foo/bar/`, `/foo/bar/baz.txt`, and `/foo//` but not `/foo/bar`
528528
// - `/foo/{*}/bar/{**}` matches `/foo/buzz/bar/` and `/foo/buzz/bar/baz`
529-
// - `/*/baz/{*}`` is not a valid path template since it includes `*` outside of a supported operator
530-
// - `/**/baz/{*}`` is not a valid path template since it includes `**` outside of a supported operator
529+
// - `/*/baz/{*}` is not a valid path template since it includes `*` outside of a supported operator
530+
// - `/**/baz/{*}` is not a valid path template since it includes `**` outside of a supported operator
531531
// - `/{**}/foo/{*}` is not a valid path template since `{**}` is not the last operator
532532
// - `/foo/{*}.txt` is invalid since there are characters other than `{*}` in the path segment
533533
//

0 commit comments

Comments
 (0)