diff --git a/source/MonoGame.Extended/Math/RectangleF.cs b/source/MonoGame.Extended/Math/RectangleF.cs index 91fad0a6..b5fdf1c3 100644 --- a/source/MonoGame.Extended/Math/RectangleF.cs +++ b/source/MonoGame.Extended/Math/RectangleF.cs @@ -686,7 +686,7 @@ namespace MonoGame.Extended /// 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);