Skip to content

Commit b83acb1

Browse files
committed
fix: stringextensions bug
1 parent dc179c4 commit b83acb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Intersect (Core)/Extensions/StringExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public static partial class StringExtensions
1616
/// <returns>a formatted string</returns>
1717
/// <seealso cref="string.Format(IFormatProvider, string, object[])"/>
1818
public static string Format(this string format, params object[] args) =>
19-
Format(format, CultureInfo.CurrentCulture);
19+
Format(format, CultureInfo.CurrentCulture, args);
2020

2121
/// <summary>
2222
/// Formats the string with the provided <see cref="IFormatProvider"/> and arguments.

0 commit comments

Comments
 (0)