Fixed @bdisp noted error

This commit is contained in:
Tig
2024-07-19 15:42:04 -06:00
parent c119fc5901
commit ee57f41b9f

View File

@@ -715,7 +715,7 @@ public class TextFormatter
if (value < 0)
{
throw new ArgumentOutOfRangeException (nameof (Width), value, @"Must be greater than or equal to 0.");
throw new ArgumentOutOfRangeException (nameof (Height), value, @"Must be greater than or equal to 0.");
}
_height = value;