Skip to content

Commit

Permalink
Fix variable typo: cound -> count
Browse files Browse the repository at this point in the history
  • Loading branch information
N3RDIUM authored Mar 18, 2024
1 parent cf42968 commit 0718acb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/docs/config/subclassing-gtk-widgets.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function CounterButton(({ color = 'aqua', ...rest })) {
return Widget.Button({
...rest, // spread passed parameters
child: label,
onClicked: () => cound++,
onClicked: () => count++,
})
}

Expand Down

0 comments on commit 0718acb

Please sign in to comment.