You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/core/src/render3/reactivity/linked_signal.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ import {
22
22
constidentityFn=<T>(v: T)=>v;
23
23
24
24
/**
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.
26
26
*
27
27
* @developerPreview
28
28
*/
@@ -32,7 +32,7 @@ export function linkedSignal<D>(
32
32
): WritableSignal<D>;
33
33
34
34
/**
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.
36
36
* This is an advanced API form where the computation has access to the previous value of the signal and the computation result.
37
37
*
38
38
* 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