From 634ed1a6e0d9fa95ec27d33219747ee904d875ff Mon Sep 17 00:00:00 2001 From: alestiago Date: Tue, 29 Mar 2022 10:06:10 +0100 Subject: [PATCH] docs: improved doc comments --- packages/pinball_components/lib/src/components/flipper.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/pinball_components/lib/src/components/flipper.dart b/packages/pinball_components/lib/src/components/flipper.dart index 2c54d826..f4b9bf4e 100644 --- a/packages/pinball_components/lib/src/components/flipper.dart +++ b/packages/pinball_components/lib/src/components/flipper.dart @@ -201,7 +201,7 @@ class _FlipperJoint extends RevoluteJoint { /// Locks the [Flipper] to its resting position. /// - /// The joint is locked when initialized in order to force the [Flipper + /// The joint is locked when initialized in order to force the [Flipper] /// at its resting position. void lock() { const angle = _sweepingAngle / 2; @@ -218,8 +218,8 @@ class _FlipperJoint extends RevoluteJoint { } } +// TODO(alestiago): Remove once Forge2D supports custom joints. extension on World { - // TODO(alestiago): Remove once Forge2D supports custom joints. void createJoint2(Joint joint) { assert(!isLocked, '');