Browse Source

Renamed Format.Text to Format.Multiple

tags/docs-0.9
Brandon Smith 9 years ago
parent
commit
85dcfc3ebd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net/Format.cs

+ 1
- 1
src/Discord.Net/Format.cs View File

@@ -60,7 +60,7 @@ namespace Discord
=> escape ? $"~~{Escape(text)}~~" : $"~~{text}~~";

/// <summary> Returns a markdown-formatted string with multiple formatting, optionally escaping the contents. </summary>
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);


Loading…
Cancel
Save