diff --git a/src/Discord.Net/Format.cs b/src/Discord.Net/Format.cs index 9edc1753f..9b8730696 100644 --- a/src/Discord.Net/Format.cs +++ b/src/Discord.Net/Format.cs @@ -60,7 +60,7 @@ namespace Discord => escape ? $"~~{Escape(text)}~~" : $"~~{text}~~"; /// Returns a markdown-formatted string with multiple formatting, optionally escaping the contents. - public static string Text(string text, bool escape = true, bool bold = false, bool italics = false, bool underline = false, bool strikeout = false) + public static string Multiple(string text, bool escape = true, bool bold = false, bool italics = false, bool underline = false, bool strikeout = false) { string result = text; if (escape) result = Escape(result);