From 573febaee4f44228846f1dd2a487cf719f01d52d Mon Sep 17 00:00:00 2001 From: alestiago Date: Wed, 30 Mar 2022 20:53:53 +0100 Subject: [PATCH] docs: enhanced launch doc comment --- lib/game/components/controlled_ball.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/game/components/controlled_ball.dart b/lib/game/components/controlled_ball.dart index 2f9c191e..dd3be0d9 100644 --- a/lib/game/components/controlled_ball.dart +++ b/lib/game/components/controlled_ball.dart @@ -11,10 +11,10 @@ import 'package:pinball_theme/pinball_theme.dart'; /// A [Ball] with a [BallController] attached. /// {@endtemplate} class ControlledBall extends Ball with Controls { - /// A [Ball] that starts at the [Plunger]. + /// A [Ball] that launches from the [Plunger]. /// /// When a launched [Ball] is lost, it will decrease the [GameState.balls] - /// count, and a new [Ball] is spawned at the [Plunger]. + /// count, and a new [Ball] is spawned. ControlledBall.launch({ required PinballTheme theme, }) : super(baseColor: theme.characterTheme.ballColor) {