Skip to content

Commit ec3f31f

Browse files
authored
Merge pull request #13 from ZhabinDA/patch-1
Changed the argumentsException message in Paging.cs
2 parents 07efebc + 9f2a9ff commit ec3f31f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Force/Linq/Pagination/Paging.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public int Page
3333
{
3434
if (value <= 0)
3535
{
36-
throw new ArgumentException("Page must be >= 0", nameof(value));
36+
throw new ArgumentException("Page must be > 0", nameof(value));
3737
}
3838

3939
_page = value;

0 commit comments

Comments
 (0)