Skip to content

Commit

Permalink
Make WithEnding public since it might be useful in other addins (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Aug 10, 2020
1 parent e301887 commit 57c9018
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Cake.Issues/StringPathExtensions.cs
Expand Up @@ -103,7 +103,7 @@ public static string NormalizePath(this string path)
/// <param name="value">String to which <paramref name="ending"/> should be added.</param>
/// <param name="ending">String which should be added to <paramref name="value"/>.</param>
/// <returns><paramref name="value"/> with the minimal concatenation of <paramref name="ending"/>.</returns>
internal static string WithEnding(this string value, string ending)
public static string WithEnding(this string value, string ending)
{
if (value == null)
{
Expand Down

0 comments on commit 57c9018

Please sign in to comment.