Skip to content

Commit

Permalink
fix: Correct typo (missing semicolon) (#840)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkelbu authored Nov 26, 2023
1 parent 7d412f1 commit 1aa400a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Is.InRange(IComparable from, IComparable to)
## Examples of Use

```csharp
int[] iarray = new int[] { 1, 2, 3 }
int[] iarray = new int[] { 1, 2, 3 };

Assert.That(42, Is.InRange(1, 100));
Assert.That(iarray, Is.All.InRange(1, 3));
Expand Down

0 comments on commit 1aa400a

Please sign in to comment.