diff options
author | 2024-05-08 13:38:34 +0100 | |
---|---|---|
committer | 2024-05-08 13:38:34 +0100 | |
commit | 8422600921c9d10c351d17c96d0d2320f2ff06de (patch) | |
tree | 34a5c01fa1d1fc7b695f24eed7254633e4022654 | |
parent | 8ef2f62c531795d47886be094fd3787e7e895c87 (diff) | |
download | astro-8422600921c9d10c351d17c96d0d2320f2ff06de.tar.gz astro-8422600921c9d10c351d17c96d0d2320f2ff06de.tar.zst astro-8422600921c9d10c351d17c96d0d2320f2ff06de.zip |
fix: error message grammar (#10973)
-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 7ebc3a383..de4e77801 100644 --- a/packages/astro/src/core/errors/errors-data.ts +++ b/packages/astro/src/core/errors/errors-data.ts @@ -1492,7 +1492,7 @@ export const UnsupportedConfigTransformError = { export const RouteNotFound = { name: 'RouteNotFound', title: 'Route not found.', - message: `Astro could find a route that matches the one you requested.`, + message: `Astro could not find a route that matches the one you requested.`, } satisfies ErrorData; // Generic catch-all - Only use this in extreme cases, like if there was a cosmic ray bit flip. |