Rebrand to Octobot Stealth #1

Merged
mctaylors merged 4 commits from use-octobot-instead into stealth 2024-04-11 00:32:50 +03:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 2d2ebd0abe - Show all commits

View file

@ -101,7 +101,7 @@ public class AboutCommandGroup : CommandGroup
builder.Append(tag).Append(' '); builder.Append(tag).Append(' ');
} }
builder.AppendLine().AppendDoubleLine(Markdown.Bold( builder.AppendDoubleLine().AppendLine(Markdown.Bold(
Markdown.Hyperlink("TeamOctolings", "https://github.com/TeamOctolings"))); Markdown.Hyperlink("TeamOctolings", "https://github.com/TeamOctolings")));
foreach (var dev in TeamOctolings) foreach (var dev in TeamOctolings)
{ {

View file

@ -69,7 +69,7 @@ public static class StringBuilderExtensions
/// <returns> /// <returns>
/// The builder with the appended string with two default line terminators at the end. /// The builder with the appended string with two default line terminators at the end.
/// </returns> /// </returns>
public static StringBuilder AppendDoubleLine(this StringBuilder builder, string? value) public static StringBuilder AppendDoubleLine(this StringBuilder builder, string? value = null)
{ {
return builder.AppendLine().AppendLine(value); return builder.AppendLine().AppendLine(value);
} }