Skip to content

Commit df911ec

Browse files
committed
formatting fix
1 parent 57fc8de commit df911ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Mathfs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public static ulong BinomialCoef( uint n, uint k ) {
174174

175175
/// <inheritdoc cref="Approximately(float,float)"/>
176176
[MethodImpl( INLINE )] public static bool Approximately( Vector4 a, Vector4 b ) => Approximately( a.x, b.x ) && Approximately( a.y, b.y ) && Approximately( a.z, b.z ) && Approximately( a.w, b.w );
177-
177+
178178
/// <inheritdoc cref="Approximately(float,float)"/>
179179
[MethodImpl( INLINE )] public static bool Approximately( Color a, Color b ) => Approximately( a.r, b.r ) && Approximately( a.g, b.g ) && Approximately( a.b, b.b ) && Approximately( a.a, b.a );
180180

0 commit comments

Comments
 (0)