From 34d205b7b8937599979aa4715faa51a115c1252f Mon Sep 17 00:00:00 2001 From: alestiago Date: Tue, 8 Mar 2022 16:21:58 +0000 Subject: [PATCH] docs: fixed doc comment typo --- lib/game/components/flipper.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/game/components/flipper.dart b/lib/game/components/flipper.dart index fbaedf70..ba124d17 100644 --- a/lib/game/components/flipper.dart +++ b/lib/game/components/flipper.dart @@ -75,7 +75,7 @@ class Flipper extends BodyComponent with KeyboardHandler { /// [onKeyEvent] method listens to when one of these keys is pressed. final List _keys; - /// Applies downard linear velocity to the [Flipper] to move it down. + /// Applies downward linear velocity to the [Flipper] to move it down. void _moveDown() { body.linearVelocity = Vector2(0, -_speed); }