fix(RectangleF): Remove extra open curly braces in the 'ToString' method (#1005)

This commit is contained in:
varelen
2025-08-03 23:30:24 +02:00
committed by GitHub
parent 33580aaaac
commit 59803aa1fe
+1 -1
View File
@@ -686,7 +686,7 @@ namespace MonoGame.Extended
/// </returns>
public override string ToString()
{
return $"{{X: {X}, Y: {Y}, Width: {Width}, Height: {Height}";
return $"X: {X}, Y: {Y}, Width: {Width}, Height: {Height}";
}
internal string DebugDisplayString => string.Concat(X, " ", Y, " ", Width, " ", Height);