Skip to content

Commit 09b0b6c

Browse files
Fix docs typos (#4328)
1 parent ff6fb68 commit 09b0b6c

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

site-src/api-types/httproute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ RouteStatus defines the observed state that is required across all route types.
307307

308308
Parents define a list of the Gateways (or other parent resources) that are
309309
associated with the HTTPRoute, and the status of the HTTPRoute with respect to
310-
each of these Gateways. When a HTTPRoute adds a reference to a Gateway in
310+
each of these Gateways. When an HTTPRoute adds a reference to a Gateway in
311311
parentRefs, the controller that manages the Gateway should add an entry to this
312312
list when the controller first sees the route and should update the entry as
313313
appropriate when the route is modified.

site-src/api-types/referencegrant.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ in the `to` list because a ReferenceGrant can only be used to allow references
3939
to resources in the same namespace as the ReferenceGrant.
4040

4141
## Example
42-
The following example shows how a HTTPRoute in namespace `foo` can reference a
42+
The following example shows how an HTTPRoute in namespace `foo` can reference a
4343
Service in namespace `bar`. In this example a ReferenceGrant in the `bar`
4444
namespace explicitly allows references to Services from HTTPRoutes in the `foo`
4545
namespace.

site-src/guides/api-design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ installed in the cluster are supported.
7575
removed in v1.1.0. With that said, all of this guidance will still apply for
7676
implementations as long as they support v1.0.0 or older releases of the API.
7777

78-
CRD and webhook validation is not the final validation i.e. webhook is "nice UX"
78+
CRD and webhook validation is not the final validation, i.e. webhook is "nice UX"
7979
but not schema enforcement. This validation is intended to provide immediate
8080
feedback to users when they provide an invalid configuration. Write code
8181
defensively with the assumption that at least some invalid input (Gateway API

site-src/guides/http-header-modifier.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ HTTP header modification is the process of adding, removing, or modifying HTTP h
1313

1414
To configure HTTP header modification, define a Gateway object with one or more HTTP filters. Each filter specifies a specific modification to make to incoming requests, such as adding a custom header or modifying an existing header.
1515

16-
To add a header to a HTTP request, use a filter of the type `RequestHeaderModifier`, with the `add` action and the name and value of the header:
16+
To add a header to an HTTP request, use a filter of the type `RequestHeaderModifier`, with the `add` action and the name and value of the header:
1717

1818
```yaml
1919
{% include 'standard/http-request-header-add.yaml' %}

site-src/guides/http-redirect-rewrite.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ and HTTPS listeners.
7878
There are multiple ways to secure a Gateway. In this example, it is secured
7979
using a Kubernetes Secret(`redirect-example` in the `certificateRefs` section).
8080

81-
You need a HTTPRoute that attaches to the HTTP listener and does the redirect
81+
You need an HTTPRoute that attaches to the HTTP listener and does the redirect
8282
to HTTPS. Here we set `sectionName` to be `http` so it only selects the
8383
listener named `http`.
8484

8585
```yaml
8686
{% include 'standard/http-redirect-rewrite/httproute-redirect-http.yaml' %}
8787
```
8888

89-
You also need a HTTPRoute that attaches to the HTTPS listener that forwards
89+
You also need an HTTPRoute that attaches to the HTTPS listener that forwards
9090
HTTPS traffic to application backends.
9191

9292
```yaml

site-src/guides/http-request-mirroring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ requests to another backend using
1010
[filters](../api-types/httproute.md#filters-optional). This guide shows how to use
1111
this feature.
1212

13-
Mirrored requests will must only be sent to one single destination endpoint
13+
Mirrored requests will only be sent to one single destination endpoint
1414
within this backendRef, and responses from this backend MUST be ignored by
1515
the Gateway.
1616

0 commit comments

Comments
 (0)