diff --git a/packages/pinball_components/sandbox/lib/stories/flutter_forest/dash_bumper_a_game.dart b/packages/pinball_components/sandbox/lib/stories/flutter_forest/dash_bumper_a_game.dart index b92e76d1..d81540b0 100644 --- a/packages/pinball_components/sandbox/lib/stories/flutter_forest/dash_bumper_a_game.dart +++ b/packages/pinball_components/sandbox/lib/stories/flutter_forest/dash_bumper_a_game.dart @@ -14,7 +14,7 @@ class DashBumperAGame extends BallGame { ); static const description = ''' - Shows how the "a: DashBumper is rendered. + Shows how the "a" DashBumper is rendered. - Activate the "trace" parameter to overlay the body. '''; diff --git a/packages/pinball_components/sandbox/lib/stories/flutter_forest/stories.dart b/packages/pinball_components/sandbox/lib/stories/flutter_forest/stories.dart index dee45b92..fcd64f79 100644 --- a/packages/pinball_components/sandbox/lib/stories/flutter_forest/stories.dart +++ b/packages/pinball_components/sandbox/lib/stories/flutter_forest/stories.dart @@ -13,17 +13,17 @@ void addFlutterForestStories(Dashbook dashbook) { gameBuilder: (_) => SignpostGame(), ) ..addGame( - title: 'Big Dash Bumper', + title: 'Main Dash Bumper', description: DashBumperMainGame.description, gameBuilder: (_) => DashBumperMainGame(), ) ..addGame( - title: 'Small Dash Bumper A', + title: 'Dash Bumper A', description: DashBumperAGame.description, gameBuilder: (_) => DashBumperAGame(), ) ..addGame( - title: 'Small Dash Bumper B', + title: 'Dash Bumper B', description: DashBumperBGame.description, gameBuilder: (_) => DashBumperBGame(), );