Skip to content

Commit c491d8c

Browse files
committed
lint fix
1 parent ff60209 commit c491d8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Extensions.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ public static string ToBrazilString(this decimal value, string? format = null) =
3131
/// </summary>
3232
public static string ToBrazilMoneyString(this decimal value, bool moneySuffix = true)
3333
{
34-
var result = value.ToString("C", NumberFormat);
34+
var result = value.ToString("C", NumberFormat);
3535
return moneySuffix ? result : result.Replace("R$ ", "");
3636
}
3737

3838
/// <summary>
3939
/// NumberFormatInfo using ',' for decimal separators and '.' for group separators
4040
/// </summary>
4141
/// {}
42-
public static readonly NumberFormatInfo NumberFormat =
42+
public static readonly NumberFormatInfo NumberFormat =
4343
new()
4444
{
4545
CurrencyDecimalDigits = 2,

0 commit comments

Comments
 (0)