From 9271754f065490854edb55eba5b36529cdd26b87 Mon Sep 17 00:00:00 2001 From: alestiago Date: Tue, 15 Mar 2022 13:50:48 +0000 Subject: [PATCH] docs: improved comments --- lib/game/components/board.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/game/components/board.dart b/lib/game/components/board.dart index 6d98997b..80db1711 100644 --- a/lib/game/components/board.dart +++ b/lib/game/components/board.dart @@ -7,6 +7,7 @@ import 'package:pinball/game/game.dart'; /// The bottom [Component]s are the [Flipper]s and the [Baseboard]s. /// {@endtemplate} // TODO(alestiago): Add [SlingShot] once provided. +// TODO(alestiago): Consider renaming once entire Board is defined. class BottomGroup extends Component { /// {@macro bottom_group} BottomGroup({ @@ -37,7 +38,7 @@ class BottomGroup extends Component { } /// {@template bottom_group_side} -/// Group with [BottomGroup]'s symmetric [Component]s. +/// Group with one side of [BottomGroup]'s symmetric [Component]s. /// /// For example, [Flipper]s are symmetric components. /// {@endtemplate}