From 084099ec8cabed80b3398eb3ea0bda17b29e6413 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ramirez=20Vargas=2C=20Jos=C3=A9=20Pablo?= Date: Thu, 4 Dec 2025 23:19:25 -0600 Subject: [PATCH] chore: Very minor addition to `kitCalculateHref`'s JsDoc --- src/lib/kitCalculateHref.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/kitCalculateHref.ts b/src/lib/kitCalculateHref.ts index 681584d..b06642d 100644 --- a/src/lib/kitCalculateHref.ts +++ b/src/lib/kitCalculateHref.ts @@ -35,7 +35,7 @@ import type { KitCalculateHrefOptions } from "./types.js"; * 1. Try to always use reactively in `$derived`, `$effect` or templates, since it reads reactive data. * 2. If a new hash fragment is desired, simply add it to one of the given HREF's. * 3. If you want to calculate an HREF for a hash routing universe, use `@svelte-router/core`'s `calculateHref` - * function. + * or `calculateMultiHashFragment()` functions. * 4. If you don't need to join HREF's or preserve query or hash, you most likely don't need this or the * base `calculateHref` function, and can simply use the HREF you already have. *