Skip to content

Commit

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

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

0 comments on commit fa290e6

Please sign in to comment.