mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-15 15:09:29 +00:00
fix(RectangleF): Remove extra open curly braces in the 'ToString' method (#1005)
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user