Skip to content

Commit d68cf17

Browse files
lukasmattadylhunn
authored andcommitted
docs: remove mutate function mention (#54569)
PR Close #54569
1 parent 89f8331 commit d68cf17

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/core/src/render3/reactivity

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export interface WritableSignal<T> extends Signal<T> {
3232

3333
/**
3434
* Returns a readonly version of this signal. Readonly signals can be accessed to read their value
35-
* but can't be changed using set, update or mutate methods. The readonly signals do _not_ have
35+
* but can't be changed using set or update methods. The readonly signals do _not_ have
3636
* any built-in mechanism that would prevent deep-mutation of their value.
3737
*/
3838
asReadonly(): Signal<T>;

0 commit comments

Comments
 (0)