diff --git a/src/Discord.Net.Core/Entities/Permissions/ChannelPermissions.cs b/src/Discord.Net.Core/Entities/Permissions/ChannelPermissions.cs
index 67e3a1bbc..3011d8330 100644
--- a/src/Discord.Net.Core/Entities/Permissions/ChannelPermissions.cs
+++ b/src/Discord.Net.Core/Entities/Permissions/ChannelPermissions.cs
@@ -8,7 +8,7 @@ namespace Discord
public struct ChannelPermissions
{
/// Gets a blank that grants no permissions.
- /// A structure that does not contain any set permissions.
+ /// A structure that does not contain any set permissions.
public static readonly ChannelPermissions None = new ChannelPermissions();
/// Gets a that grants all permissions for text channels.
public static readonly ChannelPermissions Text = new ChannelPermissions(0b01100_0000000_1111111110001_010001);
@@ -80,7 +80,7 @@ namespace Discord
public bool MoveMembers => Permissions.GetValue(RawValue, ChannelPermission.MoveMembers);
/// If true, a user may use voice-activity-detection rather than push-to-talk.
public bool UseVAD => Permissions.GetValue(RawValue, ChannelPermission.UseVAD);
- /// If True, a user may use priority speaker in a voice channel.
+ /// If true, a user may use priority speaker in a voice channel.
public bool PrioritySpeaker => Permissions.GetValue(RawValue, ChannelPermission.PrioritySpeaker);
/// If true, a user may adjust role permissions. This also implictly grants all other permissions.