Skip to content

Commit

Permalink
fix tostring override Float2.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
alec1o authored Sep 4, 2023
1 parent d950e27 commit 28fa98f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Source/Float2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public Float2(float x, float y)
this.Y = y;
}

public override ToString()
public override string ToString()
{
return $"({X}, {Y})";
}
Expand Down

0 comments on commit 28fa98f

Please sign in to comment.