Skip to content

Commit 8bc235b

Browse files
Update CollectionExtensions.cs
1 parent fbb1b3d commit 8bc235b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Helpers/Extensions/CollectionExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static IEnumerable<TResult> Flatten<TResult>(
3434
return source.SelectMany(x => x);
3535
}
3636

37-
public static string JoinStrings(this IEnumerable<string> source, string separator = "")
37+
public static string JoinStrings(this IEnumerable<string> source, string separator)
3838
{
3939
return string.Join(separator, source);
4040
}

0 commit comments

Comments
 (0)