Skip to content

Commit 2a10d47

Browse files
authored
chore: fix typo (envoyproxy#4958)
fix typo Signed-off-by: Huabing Zhao <[email protected]>
1 parent 37d3ce6 commit 2a10d47

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

site/content/en/docs/tasks/extensibility/envoy-patch-policy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ spec:
299299
op: add
300300
# Every virtual_host that ends with 'www_example_com' (using RegEx Filter)
301301
jsonPath: "..virtual_hosts[?match(@.name, '.*www_example_com')]"
302-
# If the property does not exists, it can not be selected with jsonPath
302+
# If the property does not exists, it can not be selected with jsonPath
303303
# Therefore the new property must be set in path
304304
path: "include_attempt_count_in_response"
305305
value: true
@@ -331,7 +331,7 @@ spec:
331331
op: add
332332
# Every virtual_host that ends with 'www_example_com' (using RegEx Filter)
333333
jsonPath: "..virtual_hosts[?match(@.name, '.*www_example_com')]"
334-
# If the property does not exists, it can not be selected with jsonPath
334+
# If the property does not exists, it can not be selected with jsonPath
335335
# Therefore the new property must be set in path
336336
path: "include_attempt_count_in_response"
337337
value: true
@@ -414,7 +414,7 @@ status:
414414

415415
## Caveats
416416

417-
This API will always be an unstable API and the same outcome cannot be garunteed
417+
This API will always be an unstable API and the same outcome cannot be guaranteed
418418
across versions for these reasons
419419
* The Envoy Proxy API might deprecate and remove API fields
420420
* Envoy Gateway might alter the xDS translation creating a different xDS output

site/content/en/latest/tasks/extensibility/envoy-patch-policy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ spec:
299299
op: add
300300
# Every virtual_host that ends with 'www_example_com' (using RegEx Filter)
301301
jsonPath: "..virtual_hosts[?match(@.name, '.*www_example_com')]"
302-
# If the property does not exists, it can not be selected with jsonPath
302+
# If the property does not exists, it can not be selected with jsonPath
303303
# Therefore the new property must be set in path
304304
path: "include_attempt_count_in_response"
305305
value: true
@@ -331,7 +331,7 @@ spec:
331331
op: add
332332
# Every virtual_host that ends with 'www_example_com' (using RegEx Filter)
333333
jsonPath: "..virtual_hosts[?match(@.name, '.*www_example_com')]"
334-
# If the property does not exists, it can not be selected with jsonPath
334+
# If the property does not exists, it can not be selected with jsonPath
335335
# Therefore the new property must be set in path
336336
path: "include_attempt_count_in_response"
337337
value: true
@@ -414,7 +414,7 @@ status:
414414

415415
## Caveats
416416

417-
This API will always be an unstable API and the same outcome cannot be garunteed
417+
This API will always be an unstable API and the same outcome cannot be guaranteed
418418
across versions for these reasons
419419
* The Envoy Proxy API might deprecate and remove API fields
420420
* Envoy Gateway might alter the xDS translation creating a different xDS output

site/content/en/v0.5/user/envoy-patch-policy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ is unstable and the outcome may change across versions. Use at your own risk.
1010
## Introduction
1111

1212
The [EnvoyPatchPolicy][] API allows user to modify the output [xDS][]
13-
configuration generated by Envoy Gateway intended for EnvoyProxy,
13+
configuration generated by Envoy Gateway intended for EnvoyProxy,
1414
using [JSON Patch][] semantics.
1515

1616
## Motivation
@@ -30,7 +30,7 @@ Before proceeding, you should be able to query the example backend using HTTP.
3030
* By default EnvoyPatchPolicy][] is disabled. Lets enable it in the [EnvoyGateway][] startup configuration
3131

3232
* The default installation of Envoy Gateway installs a default [EnvoyGateway][] configuration and attaches it
33-
using a `ConfigMap`. In the next step, we will update this resource to enable EnvoyPatchPolicy.
33+
using a `ConfigMap`. In the next step, we will update this resource to enable EnvoyPatchPolicy.
3434

3535

3636
```shell
@@ -188,7 +188,7 @@ status:
188188

189189
## Caveats
190190

191-
This API will always be an unstable API and the same outcome cannot be garunteed
191+
This API will always be an unstable API and the same outcome cannot be guaranteed
192192
across versions for these reasons
193193
* The Envoy Proxy API might deprecate and remove API fields
194194
* Envoy Gateway might alter the xDS translation creating a different xDS output

site/content/en/v0.6/user/envoy-patch-policy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ is unstable and the outcome may change across versions. Use at your own risk.
1010
## Introduction
1111

1212
The [EnvoyPatchPolicy][] API allows user to modify the output [xDS][]
13-
configuration generated by Envoy Gateway intended for EnvoyProxy,
13+
configuration generated by Envoy Gateway intended for EnvoyProxy,
1414
using [JSON Patch][] semantics.
1515

1616
## Motivation
@@ -30,7 +30,7 @@ Before proceeding, you should be able to query the example backend using HTTP.
3030
* By default [EnvoyPatchPolicy][] is disabled. Lets enable it in the [EnvoyGateway][] startup configuration
3131

3232
* The default installation of Envoy Gateway installs a default [EnvoyGateway][] configuration and attaches it
33-
using a `ConfigMap`. In the next step, we will update this resource to enable EnvoyPatchPolicy.
33+
using a `ConfigMap`. In the next step, we will update this resource to enable EnvoyPatchPolicy.
3434

3535

3636
```shell
@@ -188,7 +188,7 @@ status:
188188

189189
## Caveats
190190

191-
This API will always be an unstable API and the same outcome cannot be garunteed
191+
This API will always be an unstable API and the same outcome cannot be guaranteed
192192
across versions for these reasons
193193
* The Envoy Proxy API might deprecate and remove API fields
194194
* Envoy Gateway might alter the xDS translation creating a different xDS output

site/content/en/v1.0/tasks/extensibility/envoy-patch-policy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ status:
227227
228228
## Caveats
229229
230-
This API will always be an unstable API and the same outcome cannot be garunteed
230+
This API will always be an unstable API and the same outcome cannot be guaranteed
231231
across versions for these reasons
232232
* The Envoy Proxy API might deprecate and remove API fields
233233
* Envoy Gateway might alter the xDS translation creating a different xDS output

site/content/en/v1.1/tasks/extensibility/envoy-patch-policy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ status:
340340

341341
## Caveats
342342

343-
This API will always be an unstable API and the same outcome cannot be garunteed
343+
This API will always be an unstable API and the same outcome cannot be guaranteed
344344
across versions for these reasons
345345
* The Envoy Proxy API might deprecate and remove API fields
346346
* Envoy Gateway might alter the xDS translation creating a different xDS output

site/content/en/v1.2/tasks/extensibility/envoy-patch-policy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ spec:
299299
op: add
300300
# Every virtual_host that ends with 'www_example_com' (using RegEx Filter)
301301
jsonPath: "..virtual_hosts[?match(@.name, '.*www_example_com')]"
302-
# If the property does not exists, it can not be selected with jsonPath
302+
# If the property does not exists, it can not be selected with jsonPath
303303
# Therefore the new property must be set in path
304304
path: "include_attempt_count_in_response"
305305
value: true
@@ -331,7 +331,7 @@ spec:
331331
op: add
332332
# Every virtual_host that ends with 'www_example_com' (using RegEx Filter)
333333
jsonPath: "..virtual_hosts[?match(@.name, '.*www_example_com')]"
334-
# If the property does not exists, it can not be selected with jsonPath
334+
# If the property does not exists, it can not be selected with jsonPath
335335
# Therefore the new property must be set in path
336336
path: "include_attempt_count_in_response"
337337
value: true
@@ -414,7 +414,7 @@ status:
414414

415415
## Caveats
416416

417-
This API will always be an unstable API and the same outcome cannot be garunteed
417+
This API will always be an unstable API and the same outcome cannot be guaranteed
418418
across versions for these reasons
419419
* The Envoy Proxy API might deprecate and remove API fields
420420
* Envoy Gateway might alter the xDS translation creating a different xDS output

0 commit comments

Comments
 (0)