Skip to content

Commit 8d8a5d3

Browse files
committed
Fix example claims to use valid rectangular plots
1 parent 0fdd373 commit 8d8a5d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/concept/land-grab-in-space/.docs/instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Implement the `ClaimsHandler.GetClaimWithLongestSide()` method to examine all re
4343
```csharp
4444
var ch = new ClaimsHandler();
4545
ch.StakeClaim(new Plot(new Coord(1,1), new Coord(2,1), new Coord(1,2), new Coord(2,2)));
46-
ch.StakeClaim(new Plot(new Coord(1,1), new Coord(20,1), new Coord(1,2), new Coord(2,2)));
46+
ch.StakeClaim(new Plot(new Coord(10,1), new Coord(20,1), new Coord(10,2), new Coord(20,2)));
4747
ch.GetClaimWithLongestSide();
4848
// => new Plot(new Coord(1,1), new Coord(20,1), new Coord(1,2), new Coord(2,2))
4949
```

0 commit comments

Comments
 (0)