forked from TeamInklings/Octobot
Rebrand to Octobot Stealth #1
2 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue