Skip to content

Commit 110b22d

Browse files
authored
fix: replace deprecated link (#1684)
1 parent b68e789 commit 110b22d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/reactivity-utilities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Checks if a value is a ref object.
1010
function isRef<T>(r: Ref<T> | unknown): r is Ref<T>
1111
```
1212

13-
Note the return type is a [type predicate](https://www.typescriptlang.org/docs/handbook/advanced-types.html#user-defined-type-guards), which means `isRef` can be used as a type guard:
13+
Note the return type is a [type predicate](https://www.typescriptlang.org/docs/handbook/2/narrowing.html#using-type-predicates), which means `isRef` can be used as a type guard:
1414

1515
```ts
1616
let foo: unknown

0 commit comments

Comments
 (0)