docs(bloc-counter): fix a question

This commit is contained in:
miguel 2023-05-29 15:48:47 +01:00 committed by MSilva95
parent 6868bf1093
commit 92294da2ab
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
###### Is the BLoC pattern implemented properly? Can you see the `BlocObserver`, `BlocProvider`, and `BlocBuilder` being used explicitly in the code?
###### Are the `increment` and `decrement` operations implemented using the BLoC pattern, with the `CounterBloc` class managing the state of the counter?
###### Is the `increment` operation implemented using the BLoC pattern, with the `CounterBloc` class managing the state of the counter?
###### Does the app properly display the current value of the counter, and does it update automatically when the counter's value changes?