We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5114cb3 commit 4f2fc76Copy full SHA for 4f2fc76
docs/next/introduction/adding-state.md
@@ -39,7 +39,7 @@ let signal = create_signal(123);
39
console_log!("{}", signal.get());
40
41
// Update the signal with a new value.
42
-value.set(456);
+signal.set(456);
43
44
// Should print `456`.
45
0 commit comments