Fix formatting

This commit is contained in:
Tyrrrz 2023-11-17 18:44:40 +02:00
parent 008c2e64aa
commit b2ac5d8b45

View file

@ -39,7 +39,8 @@ public partial record struct Snowflake
}
public static Snowflake Parse(string value, IFormatProvider? formatProvider) =>
TryParse(value, formatProvider) ?? throw new FormatException($"Invalid snowflake '{value}'.");
TryParse(value, formatProvider)
?? throw new FormatException($"Invalid snowflake '{value}'.");
public static Snowflake Parse(string value) => Parse(value, null);
}