Utils: Fix spacing
This commit is contained in:
@ -314,7 +314,7 @@ namespace Elwig.Helpers {
|
|||||||
public static string GetSign<T>(T number) where T : INumber<T>
|
public static string GetSign<T>(T number) where T : INumber<T>
|
||||||
=> T.Sign(number) switch {
|
=> T.Sign(number) switch {
|
||||||
< 0 => "\u2212", // minus
|
< 0 => "\u2212", // minus
|
||||||
0 => "\u00b1", // plus minus
|
0 => "\u00b1", // plus minus
|
||||||
> 0 => "+",
|
> 0 => "+",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user