Skip to content

Commit c3dcf5e

Browse files
authored
Merge pull request #23 from N3RDIUM/main
Fix variable typo: `cound` -> `count`
2 parents cf42968 + 0718acb commit c3dcf5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/docs/config/subclassing-gtk-widgets.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function CounterButton(({ color = 'aqua', ...rest })) {
5858
return Widget.Button({
5959
...rest, // spread passed parameters
6060
child: label,
61-
onClicked: () => cound++,
61+
onClicked: () => count++,
6262
})
6363
}
6464

0 commit comments

Comments
 (0)