From 5332f99a5a58ee9b923f906902871ce7e14d19d7 Mon Sep 17 00:00:00 2001 From: Priere <44214460+shiyouganai@users.noreply.github.com> Date: Wed, 6 Dec 2023 03:43:38 -0500 Subject: [PATCH] Fix another comment --- website/astro.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/astro.config.mjs b/website/astro.config.mjs index 8310fa0c..c91ee0bc 100644 --- a/website/astro.config.mjs +++ b/website/astro.config.mjs @@ -36,7 +36,7 @@ function relativeURLFix() { // special case: a relative anchor link to the current page newHref += `/${path}/${url.href}`; } else { - // any other relative link + // any other same origin link // NOTE: this does strip off serialized queries and fragments newHref += (url.pathname.endsWith('/') ? url.pathname : url.pathname + '/'); }