Utils: Fix spacing

This commit is contained in:
2024-03-05 17:29:58 +01:00
parent 5a488369be
commit d6f1ce01fb

View File

@ -314,7 +314,7 @@ namespace Elwig.Helpers {
public static string GetSign<T>(T number) where T : INumber<T>
=> T.Sign(number) switch {
< 0 => "\u2212", // minus
0 => "\u00b1", // plus minus
0 => "\u00b1", // plus minus
> 0 => "+",
};