Skip to content

Commit

Permalink
docs: add missing closing bracket in counter_bloc_full.dart.md (fel…
Browse files Browse the repository at this point in the history
  • Loading branch information
satyam-seth authored Jun 4, 2023
1 parent 907770d commit 6f46a96
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docs/_snippets/core_concepts/counter_bloc_full.dart.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ class CounterBloc extends Bloc<CounterEvent, int> {
CounterBloc() : super(0) {
on<CounterIncrementPressed>((event, emit) => emit(state + 1));
}
}
```

0 comments on commit 6f46a96

Please sign in to comment.