Skip to content

Commit 388e22b

Browse files
authored
Fix a typo in README.md (#2575)
1 parent 6628d9f commit 388e22b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import { render } from "solid-js/web";
4848

4949
// A component is just a function that returns a DOM node
5050
function Counter() {
51-
// Create a piece of reactive state, giving us a accessor, count(), and a setter, setCount()
51+
// Create a piece of reactive state, giving us an accessor, count(), and a setter, setCount()
5252
const [count, setCount] = createSignal(0);
5353

5454
//To create derived state, just wrap an expression in a function

0 commit comments

Comments
 (0)