Skip to content

Commit

Permalink
fixed the error message for the NumberOfFiles property
Browse files Browse the repository at this point in the history
  • Loading branch information
dudinda committed Nov 28, 2024
1 parent 462a323 commit 67662d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ExtSort/Models/Settings/SorterSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public virtual bool Validate(out StringBuilder errors)
{
errors = new StringBuilder();
if(NumberOfFiles <= 0)
errors.AppendLine("Chunk size must be greater than 0 (kb)");
errors.AppendLine("The number of chunks be greater than 0");
if (SortPageSize <= 0)
errors.AppendLine("Sort page size must be greater than 0");
if (!IOPath.Validate(out var ioerrors))
Expand Down

0 comments on commit 67662d1

Please sign in to comment.