diff --git a/as/optional.ts b/as/optional.ts index 0d785ee..ceef0bf 100644 --- a/as/optional.ts +++ b/as/optional.ts @@ -61,7 +61,7 @@ export function asOptional

>( /** * Unannotate the annotated predicate function with {@linkcode asOptional}. * - * Use this function to unannotate a predicate function of `predObj` in {@linkcode isObjectOf}. + * Use this function to unannotate a predicate function of `predObj` in {@linkcode [jsr:@core/unknownutil/is/object-of].isObjectOf}. * * Note that the annotated predicate function will return `true` if the type of `x` is `T`, indicating that * this function is not just for annotation but it also changes the behavior of the predicate function. diff --git a/as/readonly.ts b/as/readonly.ts index ea0293f..baf95db 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 isObjectOf}. + * Use this function to annotate a predicate function of `predObj` in {@linkcode https://jsr.io/@core/unknownutil/doc/is/object-of/~/isObjectOf|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 isObjectOf}. + * Use this function to unannotate a predicate function of `predObj` in {@linkcode [jsr:@core/unknownutil/is/object-of].isObjectOf}. * * To enhance performance, users are advised to cache the return value of this function and mitigate the creation cost. *