From d3ba5bb5b0580c5da5a853c9a1d303de0d63aa73 Mon Sep 17 00:00:00 2001 From: Alisue Date: Thu, 22 Aug 2024 00:12:45 +0900 Subject: [PATCH] WIP --- as/readonly.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/as/readonly.ts b/as/readonly.ts index baf95db..bcbc942 100644 --- a/as/readonly.ts +++ b/as/readonly.ts @@ -10,7 +10,7 @@ import { /** * Annotate the given predicate function as readonly. * - * Use this function to annotate a predicate function of `predObj` in {@linkcode https://jsr.io/@core/unknownutil/doc/is/object-of/~/isObjectOf|isObjectOf}. + * Use this function to annotate a predicate function of `predObj` in {@linkcode [is/object-of].isObjectOf}. * * Use {@linkcode asUnreadonly} to remove the annotation. * Use {@linkcode hasReadonly} to check if a predicate function has annotated with this function. @@ -45,7 +45,7 @@ export function asReadonly

>( /** * Unannotate the annotated predicate function with {@linkcode asReadonly}. * - * Use this function to unannotate a predicate function of `predObj` in {@linkcode [jsr:@core/unknownutil/is/object-of].isObjectOf}. + * Use this function to unannotate a predicate function of `predObj` in {@linkcode [../is/object-of].isObjectOf}. * * To enhance performance, users are advised to cache the return value of this function and mitigate the creation cost. *