diff --git a/BinaryMatrixEngine/ActionSet.cs b/BinaryMatrixEngine/ActionSet.cs index 7e87b13..23d4d6c 100644 --- a/BinaryMatrixEngine/ActionSet.cs +++ b/BinaryMatrixEngine/ActionSet.cs @@ -49,7 +49,7 @@ public ActionSet(ActionType type, CardSpecification card, int lane) { private static int ValidateLane(int lane, bool allowPseudo = false) { return lane switch { < 0 or > LANE_A => throw new ArgumentOutOfRangeException(nameof(lane), lane, "Lane must be within the range [0; " + LANE_A + "]."), - LANE_A when !allowPseudo => throw new ArgumentOutOfRangeException(nameof(lane), lane, "Lane must name a real lane, not the `a` pseudolane for this action."), + LANE_A when !allowPseudo => throw new ArgumentOutOfRangeException(nameof(lane), lane, "Lane must name a real lane, not the `a` pseudolane, for this action."), _ => lane }; }