From 814ecd08a424c32397fccfa85aaa6f6848114636 Mon Sep 17 00:00:00 2001 From: shshsh-sh <3490840244@qq.com> Date: Sun, 11 Jan 2026 00:24:20 +0800 Subject: [PATCH] Fix a typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 28928b9f4..2cdf7ca63 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ import { render } from "solid-js/web"; // A component is just a function that returns a DOM node function Counter() { - // Create a piece of reactive state, giving us a accessor, count(), and a setter, setCount() + // Create a piece of reactive state, giving us an accessor, count(), and a setter, setCount() const [count, setCount] = createSignal(0); //To create derived state, just wrap an expression in a function