Browse Source

Fixed Color.DebuggerDisplay

pull/193/merge
RogueException 9 years ago
parent
commit
3f53472c51
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net/Entities/Roles/Color.cs

+ 1
- 1
src/Discord.Net/Entities/Roles/Color.cs View File

@@ -40,7 +40,7 @@ using System.Diagnostics;
public override string ToString() =>
$"#{Convert.ToString(RawValue, 16)}";
private string DebuggerDisplay() =>
private string DebuggerDisplay =>
$"#{Convert.ToString(RawValue, 16)} ({RawValue})";
}
}

Loading…
Cancel
Save