diff --git a/website/docs/reference/resource-configs/group.md b/website/docs/reference/resource-configs/group.md
index 7515d8c5789..bce2a72136e 100644
--- a/website/docs/reference/resource-configs/group.md
+++ b/website/docs/reference/resource-configs/group.md
@@ -29,8 +29,6 @@ Support for grouping models was added in dbt Core v1.5
-
-
```yml
@@ -68,6 +66,8 @@ select ...
+
+
@@ -80,8 +80,6 @@ Support for grouping seeds was added in dbt Core v1.5
-
-
```yml
@@ -102,6 +100,8 @@ seeds:
+
+
@@ -115,8 +115,6 @@ Support for grouping snapshots was added in dbt Core v1.5
-
-
```yml
@@ -143,6 +141,8 @@ select ...
+
+
@@ -156,8 +156,6 @@ Support for grouping tests was added in dbt Core v1.5
-
-
```yml
@@ -210,6 +208,8 @@ select ...
+
+
@@ -239,8 +239,6 @@ Support for grouping metrics was added in dbt Core v1.5
-
-
```yaml
@@ -264,8 +262,11 @@ metrics:
+
+
+
@@ -276,12 +277,12 @@ Support for grouping semantic models has been added in dbt Core v1.7.
-
+
-```yml
+```yaml
semantic_models:
- - name: model_name
- group: finance
+ - name:
+ group:
```
@@ -289,16 +290,14 @@ semantic_models:
-```yml
-semantic_models:
+```yaml
+semantic-models:
[](resource-path):
- +group: finance
+ [+](plus-prefix)group:
```
-The `group` configuration can be nested under the `config` key.
-
@@ -306,7 +305,7 @@ The `group` configuration can be nested under the `config` key.
## Definition
-An optional configuration for grouping models, analysis, snapshots, tests, and metrics. When a resource is grouped, dbt will allow it to reference private models within the same group.
+An optional configuration for assigning a group to a resource. When a resource is grouped, dbt will allow it to reference private models within the same group.
For more details on reference access between resources in groups, check out [model access](/docs/collaborate/govern/model-access#groups).