From 92294da2ab962aaebb3a64f24e3c6cd6b9be5404 Mon Sep 17 00:00:00 2001 From: miguel Date: Mon, 29 May 2023 15:48:47 +0100 Subject: [PATCH] docs(bloc-counter): fix a question --- subjects/mobile-dev/bloc-counter/audit/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/mobile-dev/bloc-counter/audit/README.md b/subjects/mobile-dev/bloc-counter/audit/README.md index b54e1a4f..83e522d7 100644 --- a/subjects/mobile-dev/bloc-counter/audit/README.md +++ b/subjects/mobile-dev/bloc-counter/audit/README.md @@ -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?