From 1dec370f4825e47f08982f44f3af0fb1816b37ca Mon Sep 17 00:00:00 2001 From: IgorM867 Date: Thu, 2 Oct 2025 21:01:21 +0200 Subject: [PATCH] Update instructions.md --- exercises/concept/land-grab-in-space/.docs/instructions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/concept/land-grab-in-space/.docs/instructions.md b/exercises/concept/land-grab-in-space/.docs/instructions.md index 14822a7087..2e083ece9f 100644 --- a/exercises/concept/land-grab-in-space/.docs/instructions.md +++ b/exercises/concept/land-grab-in-space/.docs/instructions.md @@ -43,7 +43,7 @@ Implement the `ClaimsHandler.GetClaimWithLongestSide()` method to examine all re ```csharp var ch = new ClaimsHandler(); ch.StakeClaim(new Plot(new Coord(1,1), new Coord(2,1), new Coord(1,2), new Coord(2,2))); -ch.StakeClaim(new Plot(new Coord(1,1), new Coord(20,1), new Coord(1,2), new Coord(2,2))); +ch.StakeClaim(new Plot(new Coord(1,1), new Coord(20,1), new Coord(1,2), new Coord(20,2))); ch.GetClaimWithLongestSide(); -// => new Plot(new Coord(1,1), new Coord(20,1), new Coord(1,2), new Coord(2,2)) +// => new Plot(new Coord(1,1), new Coord(20,1), new Coord(1,2), new Coord(20,2)) ```