diff --git a/website/content/docs/connect/gateways/api-gateway/configuration/routes.mdx b/website/content/docs/connect/gateways/api-gateway/configuration/routes.mdx
index 6723931290..9e2e8265ee 100644
--- a/website/content/docs/connect/gateways/api-gateway/configuration/routes.mdx
+++ b/website/content/docs/connect/gateways/api-gateway/configuration/routes.mdx
@@ -101,7 +101,7 @@ This field specifies backend services that the `Route` references. The following
| Parameter | Description | Type | Required |
| --- | --- | --- | --- |
-| `group` | Specifies the Kubernetes API Group of the referenced backend. You can specify the following values:
- `""`: Specifies the core Kubernetes API group. This value must be used when `kind` is set to `Service`. This is the default value if unspecified.
- `api-gateway.consul.hashicorp.com`: This value must be used when `kind` is set to `MeshService`.
| String | Optional |
+| `group` | Specifies the Kubernetes API Group of the referenced backend. You can specify the following values: - `""`: Specifies the core Kubernetes API group. This value must be used when `kind` is set to `Service`. This is the default value if unspecified.
- `consul.hashicorp.com`: This value must be used when `kind` is set to `MeshService`.
| String | Optional |
| `kind` | Specifies the Kubernetes Kind of the referenced backend. You can specify the following values: - `Service` (default): Indicates that the `backendRef` references a Service in the Kubernetes cluster.
- `MeshService`: Indicates that the `backendRef` references a service in the Consul mesh. Refer to the `MeshService` [documentation](/consul/docs/connect/gateways/api-gateway/configuration/meshservice) for additional information.
| String | Optional |
| `name` | Specifies the name of the Kubernetes Service or Consul mesh service resource. | String | Required |
| `namespace` | Specifies the Kubernetes namespace containing the Kubernetes Service or Consul mesh service resource. You must specify a value if the Service or Consul mesh service is defined in a different namespace from the `Route`. Defaults to the namespace of the `Route`.
To create a route for a `backendRef` in a different namespace, you must also create a [ReferenceGrant](https://gateway-api.sigs.k8s.io/v1alpha2/references/spec/#gateway.networking.k8s.io/v1alpha2.ReferenceGrant). Refer to the [example route](#example-cross-namespace-backendref) configured to reference across namespaces. | String | Optional |
diff --git a/website/content/docs/connect/gateways/api-gateway/define-routes/route-to-peered-services.mdx b/website/content/docs/connect/gateways/api-gateway/define-routes/route-to-peered-services.mdx
index 414ce45f53..e323f8ea9e 100644
--- a/website/content/docs/connect/gateways/api-gateway/define-routes/route-to-peered-services.mdx
+++ b/website/content/docs/connect/gateways/api-gateway/define-routes/route-to-peered-services.mdx
@@ -67,7 +67,7 @@ spec:
...
rules:
- backendRefs:
- - group: api-gateway.consul.hashicorp.com
+ - group: consul.hashicorp.com
kind: MeshService
name: example-mesh-service
port: 3000