Browse Source

revert type of CommandServiceConfig QuotationMarkAliasMap to Dictionary

pull/943/head
Chris Johnston 7 years ago
parent
commit
46e9cf64f3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.Commands/CommandServiceConfig.cs

+ 1
- 1
src/Discord.Net.Commands/CommandServiceConfig.cs View File

@@ -19,7 +19,7 @@ namespace Discord.Commands


/// <summary> Collection of aliases that can wrap strings for command parsing. /// <summary> Collection of aliases that can wrap strings for command parsing.
/// represents the opening quotation mark and the value is the corresponding closing mark.</summary> /// represents the opening quotation mark and the value is the corresponding closing mark.</summary>
public IReadOnlyDictionary<char, char> QuotationMarkAliasMap { get; set; }
public Dictionary<char, char> QuotationMarkAliasMap { get; set; }
= new Dictionary<char, char>() = new Dictionary<char, char>()
{ {
{'\"', '\"' }, {'\"', '\"' },


Loading…
Cancel
Save