aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Emanuele Stoppa <my.burning@gmail.com> 2024-05-08 13:38:34 +0100
committerGravatar GitHub <noreply@github.com> 2024-05-08 13:38:34 +0100
commit8422600921c9d10c351d17c96d0d2320f2ff06de (patch)
tree34a5c01fa1d1fc7b695f24eed7254633e4022654
parent8ef2f62c531795d47886be094fd3787e7e895c87 (diff)
downloadastro-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.ts2
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.