@@ -14,7 +14,7 @@ export const as: {
1414 /**
1515 * Annotate the given predicate function as optional.
1616 *
17- * Use this function to annotate a predicate function of `predObj` in {@linkcode isObjectOf}.
17+ * Use this function to annotate a predicate function of `predObj` in {@linkcode [is/object-of].isObjectOf| isObjectOf}.
1818 *
1919 * Note that the annotated predicate function will return `true` if the type of `x` is `T` or `undefined`, indicating that
2020 * this function is not just for annotation but it also changes the behavior of the predicate function.
@@ -40,7 +40,7 @@ export const as: {
4040 /**
4141 * Annotate the given predicate function as readonly.
4242 *
43- * Use this function to annotate a predicate function of `predObj` in {@linkcode isObjectOf}.
43+ * Use this function to annotate a predicate function of `predObj` in {@linkcode [is/object-of].isObjectOf| isObjectOf}.
4444 *
4545 * Use {@linkcode asUnreadonly} to remove the annotation.
4646 * Use {@linkcode hasReadonly} to check if a predicate function has annotated with this function.
@@ -63,7 +63,7 @@ export const as: {
6363 /**
6464 * Unannotate the annotated predicate function with {@linkcode asOptional}.
6565 *
66- * Use this function to unannotate a predicate function of `predObj` in {@linkcode isObjectOf}.
66+ * Use this function to unannotate a predicate function of `predObj` in {@linkcode [is/object-of].isObjectOf| isObjectOf}.
6767 *
6868 * Note that the annotated predicate function will return `true` if the type of `x` is `T`, indicating that
6969 * this function is not just for annotation but it also changes the behavior of the predicate function.
@@ -86,7 +86,7 @@ export const as: {
8686 /**
8787 * Unannotate the annotated predicate function with {@linkcode asReadonly}.
8888 *
89- * Use this function to unannotate a predicate function of `predObj` in {@linkcode isObjectOf}.
89+ * Use this function to unannotate a predicate function of `predObj` in {@linkcode [is/object-of].isObjectOf| isObjectOf}.
9090 *
9191 * To enhance performance, users are advised to cache the return value of this function and mitigate the creation cost.
9292 *
0 commit comments