diff --git a/www/routes/docs/[[version]]/[...slug].tsx b/www/routes/docs/[[version]]/[...slug].tsx index e1dea26de83..7a12d38a836 100644 --- a/www/routes/docs/[[version]]/[...slug].tsx +++ b/www/routes/docs/[[version]]/[...slug].tsx @@ -46,7 +46,7 @@ export const handler = define.handlers({ async GET(ctx) { const { slug, version: versionFromPath } = ctx.params; - // If no slug is specfied and versionFromPath is valid, redirect to the first page of that version + // If no slug is specified and versionFromPath is valid, redirect to the first page of that version // E.g. /docs/latest redirects to /docs/latest/{first-page} if (!slug && TABLE_OF_CONTENTS[versionFromPath]) { const href = getFirstPageUrl(versionFromPath);