Skip to content

Commit

Permalink
Merge pull request Aylur#23 from N3RDIUM/main
Browse files Browse the repository at this point in the history
Fix variable typo: `cound` -> `count`
  • Loading branch information
Aylur authored Mar 18, 2024
2 parents cf42968 + 0718acb commit c3dcf5e
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 c3dcf5e

Please sign in to comment.