From 156e2658af6245c008d411a948d514b4e6cfc89a Mon Sep 17 00:00:00 2001 From: alestiago Date: Fri, 18 Mar 2022 10:53:22 +0000 Subject: [PATCH] docs: improved doc comment --- lib/game/components/ball.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/game/components/ball.dart b/lib/game/components/ball.dart index 0795767c..01990225 100644 --- a/lib/game/components/ball.dart +++ b/lib/game/components/ball.dart @@ -72,7 +72,7 @@ class Ball extends BodyComponent with InitialPosition { /// Allows the [Ball] to be affected by forces. /// - /// If when previously [stop]ed, the previous ball's velocity is not kept. + /// If previously [stop]ed, the previous ball's velocity is not kept. void resume() { body.setType(BodyType.dynamic); }