From 395f80a09d05f89a26db4907b1a874c8c96bcdb4 Mon Sep 17 00:00:00 2001 From: alestiago Date: Tue, 15 Mar 2022 08:59:09 +0000 Subject: [PATCH] docs: rephrased 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 1407f916..ea8fb1cf 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 which the [BoardSide] moves. + /// Represents the path which the [BoardSide] moves along. int get direction => isLeft ? -1 : 1; }