diff --git a/website/docs/reference/global-configs/resource-type.md b/website/docs/reference/global-configs/resource-type.md index 245610d9e1e..25ef426a6a7 100644 --- a/website/docs/reference/global-configs/resource-type.md +++ b/website/docs/reference/global-configs/resource-type.md @@ -64,25 +64,25 @@ Instead of targeting specific resources, use the `--resource-flag` or `--exclude - For example, use the following command to include _all_ snapshots from your dbt build process: - + -```text -dbt build --resource-type snapshot -``` + ```text + dbt build --resource-type snapshot + ``` - + - In this example, run the following command to include _all_ saved queries with the `--resource-type` flag: - + -```text -dbt build --resource-type saved_query -``` + ```text + dbt build --resource-type saved_query + ``` - + @@ -90,22 +90,22 @@ dbt build --resource-type saved_query - In this example, use the following command to exclude _all_ unit tests from your dbt build process. Note that the `--exclude-resource-type` flag is only available in dbt version 1.8 and higher: - + -```text -dbt build --exclude-resource-type unit_test -``` + ```text + dbt build --exclude-resource-type unit_test + ``` - + - In this example, use the following command to include all data tests in your build process: - + -```text -dbt build --resource-type test -``` + ```text + dbt build --resource-type test + ``` - +