From 126b0ea96a5e5ac4a8bfb4d2ebf14a8397c3518f Mon Sep 17 00:00:00 2001 From: alestiago Date: Wed, 16 Mar 2022 15:31:51 +0000 Subject: [PATCH] docs: improved doc comments --- lib/game/components/board.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/game/components/board.dart b/lib/game/components/board.dart index a5bcc3fa..08df7014 100644 --- a/lib/game/components/board.dart +++ b/lib/game/components/board.dart @@ -36,12 +36,12 @@ class Board extends Component { } } -/// {@template dash_forest} +/// {@template flutter_forest} /// Area positioned at the top right of the [Board] where the [Ball] /// can bounce off [RoundBumper]s. /// {@endtemplate} class _FlutterForest extends Component { - /// {@macro dash_forest} + /// {@macro flutter_forest} _FlutterForest({ required this.position, }); @@ -79,7 +79,7 @@ class _FlutterForest extends Component { /// {@template bottom_group} /// Grouping of the board's bottom [Component]s. /// -/// The bottom [Component]s are the [Flipper]s and the [Baseboard]s. +/// The [_BottomGroup] consists of[Flipper]s, [Baseboard]s and [SlingShot]s. /// {@endtemplate} // TODO(alestiago): Consider renaming once entire Board is defined. class _BottomGroup extends Component {