diff options
author | 2023-10-03 00:36:15 +0800 | |
---|---|---|
committer | 2023-10-02 18:36:15 +0200 | |
commit | f9477aade1648c7adbc1a69df4d3e09b145a14fc (patch) | |
tree | 4d4bbe62920e42d021e2ae9766fb0dceda6b89e2 | |
parent | 78fda5c3ecebe8e15a0ce2941c80f3742665b9f7 (diff) | |
download | astro-f9477aade1648c7adbc1a69df4d3e09b145a14fc.tar.gz astro-f9477aade1648c7adbc1a69df4d3e09b145a14fc.tar.zst astro-f9477aade1648c7adbc1a69df4d3e09b145a14fc.zip |
fix: typo in error deprecation message (#8708)
Co-authored-by: Alexander Niebuhr <alexander@nbhr.io>
-rw-r--r-- | packages/astro/src/core/errors/errors-data.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/core/errors/errors-data.ts b/packages/astro/src/core/errors/errors-data.ts index 5f825126f..d805bb6ff 100644 --- a/packages/astro/src/core/errors/errors-data.ts +++ b/packages/astro/src/core/errors/errors-data.ts @@ -1158,7 +1158,7 @@ export const ContentSchemaContainsSlugError = { /** * @docs * @message A collection queried via `getCollection()` does not exist. - * @deprecated Collections that do not exist no longer result in an error. A warning is omitted instead. + * @deprecated Collections that do not exist no longer result in an error. A warning is given instead. * @description * When querying a collection, ensure a collection directory with the requested name exists under `src/content/`. */ |