Skip to content

Commit fb90944

Browse files
luangongpkozlowski-opensource
authored andcommitted
docs(core): Fix typo in documentation of linkedSignal (#59752)
PR Close #59752
1 parent 07e5136 commit fb90944

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/src/render3/reactivity/linked_signal.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import {
2222
const identityFn = <T>(v: T) => v;
2323

2424
/**
25-
* Creates a writable signals whose value is initialized and reset by the linked, reactive computation.
25+
* Creates a writable signal whose value is initialized and reset by the linked, reactive computation.
2626
*
2727
* @developerPreview
2828
*/
@@ -32,7 +32,7 @@ export function linkedSignal<D>(
3232
): WritableSignal<D>;
3333

3434
/**
35-
* Creates a writable signals whose value is initialized and reset by the linked, reactive computation.
35+
* Creates a writable signal whose value is initialized and reset by the linked, reactive computation.
3636
* This is an advanced API form where the computation has access to the previous value of the signal and the computation result.
3737
*
3838
* Note: The computation is reactive, meaning the linked signal will automatically update whenever any of the signals used within the computation change.

0 commit comments

Comments
 (0)