From 57a6243649fcde608dc6bb424ed46c041089a790 Mon Sep 17 00:00:00 2001 From: Erick Date: Wed, 9 Mar 2022 14:13:47 -0300 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Alejandro Santiago --- lib/game/bloc/game_state.dart | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/game/bloc/game_state.dart b/lib/game/bloc/game_state.dart index 267200cf..c64a5178 100644 --- a/lib/game/bloc/game_state.dart +++ b/lib/game/bloc/game_state.dart @@ -1,7 +1,6 @@ part of 'game_bloc.dart'; -/// Enum to describe all the available bonuses -/// on the game +/// Defines bonuses that a player can gain during a [PinballGame]. enum GameBonuses { letterSequence, } @@ -36,8 +35,8 @@ class GameState extends Equatable { /// Active bonus letters. final List activatedBonusLetters; - /// Holds the history of all the bonuses - /// that the palyer earned during the play + /// Holds the history of all the [GameBonus]es earned by the player during a + /// [PinballGame]. final List bonusHistory; /// Determines when the game is over.