Browse Source

Update Format.cs

removed comma and space
tags/1.0-rc
Confruggy GitHub 8 years ago
parent
commit
02b0726338
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.Core/Format.cs

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

@@ -3,7 +3,7 @@
public static class Format
{
// Characters which need escaping
private static string[] SensitiveCharacters = { "\\", "*", "_", "~", "`", };
private static string[] SensitiveCharacters = { "\\", "*", "_", "~", "`" };

/// <summary> Returns a markdown-formatted string with bold formatting. </summary>
public static string Bold(string text) => $"**{text}**";


Loading…
Cancel
Save