From 2e28cd1a1d9ec52576b6b289578486316da0a4b6 Mon Sep 17 00:00:00 2001 From: Allison Ryan Date: Thu, 3 Mar 2022 14:30:01 -0600 Subject: [PATCH] docs: fix typo --- lib/game/components/plunger.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/game/components/plunger.dart b/lib/game/components/plunger.dart index 2b55cdc7..8af6b167 100644 --- a/lib/game/components/plunger.dart +++ b/lib/game/components/plunger.dart @@ -28,7 +28,7 @@ class Plunger extends BodyComponent { return world.createBody(bodyDef)..createFixture(fixtureDef); } - /// Set a contstant downward velocity on the plunger body. + /// Set a constant downward velocity on the plunger body. void pull() { body.linearVelocity = Vector2(0, -7); }