diff --git a/website/docs/docs/build/packages.md b/website/docs/docs/build/packages.md index 813a27f42e0..0d31f7e0be1 100644 --- a/website/docs/docs/build/packages.md +++ b/website/docs/docs/build/packages.md @@ -96,12 +96,12 @@ By default, `dbt deps` will not include prerelease versions when resolving packa - Explicitly specifying a prerelease version in your `version` criteria - Setting `install-prerelease` to `true`, and providing a compatible version range -Both of the following configurations would successfully install `0.4.5a2` of `dbt_artifacts`: +For example, both of the following configurations would successfully install `0.4.5-a2` for the [`dbt_artifacts` package](https://hub.getdbt.com/brooklyn-data/dbt_artifacts/latest/): ```yaml packages: - package: brooklyn-data/dbt_artifacts - version: 0.4.5a2 + version: 0.4.5-a2 ``` ```yaml