Skip to content

Commit

Permalink
Update cheat-sheet.mdx (#878)
Browse files Browse the repository at this point in the history
  • Loading branch information
asavchuk authored Nov 7, 2022
1 parent 87ba7d1 commit 021f4a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/guides/cheat-sheet.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ abstract class _Counter with Store {
ReactionDisposer _dispose;
void setupReactions() {
_dispose = when((_) => counter > 10, (){
_dispose = when((_) => counter >= 10, (){
print("Count has reached the limit of 10");
});
}
Expand Down

0 comments on commit 021f4a0

Please sign in to comment.