Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix error message
  • Loading branch information
franklupo committed Jul 2, 2024
commit 8ecd66ee5d2c69088660473f92482ad303581e2a
2 changes: 1 addition & 1 deletion src/Core/Components/Base/InputHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ internal static void ValidateSByteInputs(string max, string min)

if (maxValue < minValue)
{
throw new ArgumentException("Float Max value is smaller than Min value.");
throw new ArgumentException("Signed Integer Max value is smaller than Min value.");
}
}

Expand Down