From 4e1958de9334a5e7fd9c73370e5119d5ebc7b569 Mon Sep 17 00:00:00 2001 From: alestiago Date: Mon, 2 May 2022 23:31:05 +0100 Subject: [PATCH] docs: enhanced documentation --- .../lib/src/components/signpost/cubit/signpost_state.dart | 8 ++++---- .../lib/src/components/signpost/signpost.dart | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/pinball_components/lib/src/components/signpost/cubit/signpost_state.dart b/packages/pinball_components/lib/src/components/signpost/cubit/signpost_state.dart index 0141ae06..72173bf1 100644 --- a/packages/pinball_components/lib/src/components/signpost/cubit/signpost_state.dart +++ b/packages/pinball_components/lib/src/components/signpost/cubit/signpost_state.dart @@ -3,15 +3,15 @@ part of 'signpost_cubit.dart'; enum SignpostState { - /// Signpost with no active dashes. + /// Signpost with no active eggs. inactive, - /// Signpost with a single sign of lit up dashes. + /// Signpost with a single sign of lit up eggs. active1, - /// Signpost with two signs of lit up dashes. + /// Signpost with two signs of lit up eggs. active2, - /// Signpost with all signs of lit up dashes. + /// Signpost with all signs of lit up eggs. active3, } diff --git a/packages/pinball_components/lib/src/components/signpost/signpost.dart b/packages/pinball_components/lib/src/components/signpost/signpost.dart index 68b4ad60..d22f46f3 100644 --- a/packages/pinball_components/lib/src/components/signpost/signpost.dart +++ b/packages/pinball_components/lib/src/components/signpost/signpost.dart @@ -33,7 +33,7 @@ class Signpost extends BodyComponent with InitialPosition { ], ); - /// Creates an [Signpost] without any children. + /// Creates a [Signpost] without any children. /// /// This can be used for testing [Signpost]'s behaviors in isolation. // TODO(alestiago): Refactor injecting bloc once the following is merged: