From f303fc4850f9699ae1a45a00d1123656fd8716aa Mon Sep 17 00:00:00 2001 From: alestiago Date: Tue, 15 Mar 2022 08:54:56 +0000 Subject: [PATCH] docs: improved doc comment --- lib/game/components/board_side.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/game/components/board_side.dart b/lib/game/components/board_side.dart index 2ec5a03e..1407f916 100644 --- a/lib/game/components/board_side.dart +++ b/lib/game/components/board_side.dart @@ -22,6 +22,6 @@ extension BoardSideX on BoardSide { /// Direction of the [BoardSide]. /// - /// Represents the line along the [BoardSide] moves. + /// Represents the line which the [BoardSide] moves. int get direction => isLeft ? -1 : 1; }