From b78d8e89efb3e1a0aa0b906002b3a115612ef3fc Mon Sep 17 00:00:00 2001 From: Robert Nystrom Date: Fri, 13 Oct 2023 11:28:01 -0700 Subject: [PATCH] Fix comment. --- lib/src/piece/piece.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/src/piece/piece.dart b/lib/src/piece/piece.dart index 0bf50e46..f0b433f4 100644 --- a/lib/src/piece/piece.dart +++ b/lib/src/piece/piece.dart @@ -14,9 +14,9 @@ import '../back_end/code_writer.dart'; abstract class Piece { /// The ordered list of indexes identifying each way this piece can split. /// - /// Each piece determines what each integer value in the list represents. The - /// list returned by this function should be sorted so that earlier states in - /// the list compare less than later states. + /// Each piece determines what each value in the list represents. The list + /// returned by this function should be sorted so that earlier states in the + /// list compare less than later states. /// /// In addition to the values returned here, each piece should implicitly /// support a [State.initial] which is the least split form the piece allows.