Update Format.cs

removed comma and space
This commit is contained in:
Confruggy
2017-01-23 16:10:56 +01:00
committed by GitHub
parent c1e445d8ce
commit 02b0726338

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}**";