diff --git a/src/Discord.Net.Core/Entities/ApplicationRoleConnection/RoleConnection.cs b/src/Discord.Net.Core/Entities/ApplicationRoleConnection/RoleConnection.cs
index acef2dad1..aa4bd3348 100644
--- a/src/Discord.Net.Core/Entities/ApplicationRoleConnection/RoleConnection.cs
+++ b/src/Discord.Net.Core/Entities/ApplicationRoleConnection/RoleConnection.cs
@@ -2,6 +2,9 @@ using System.Collections.Generic;
namespace Discord;
+///
+/// Represents the connection object that the user has attached.
+///
public class RoleConnection
{
///
diff --git a/src/Discord.Net.Core/Entities/ApplicationRoleConnection/RoleConnectionMetadata.cs b/src/Discord.Net.Core/Entities/ApplicationRoleConnection/RoleConnectionMetadata.cs
index 26ac3065d..2e5a2ccce 100644
--- a/src/Discord.Net.Core/Entities/ApplicationRoleConnection/RoleConnectionMetadata.cs
+++ b/src/Discord.Net.Core/Entities/ApplicationRoleConnection/RoleConnectionMetadata.cs
@@ -1,9 +1,11 @@
-using System;
using System.Collections.Generic;
using System.Collections.Immutable;
namespace Discord;
+///
+/// Represents the role connection metadata object.
+///
public class RoleConnectionMetadata
{
///
diff --git a/src/Discord.Net.Core/Entities/ApplicationRoleConnection/RoleConnectionMetadataProperties.cs b/src/Discord.Net.Core/Entities/ApplicationRoleConnection/RoleConnectionMetadataProperties.cs
index 9c4fb87b6..d313fcfc6 100644
--- a/src/Discord.Net.Core/Entities/ApplicationRoleConnection/RoleConnectionMetadataProperties.cs
+++ b/src/Discord.Net.Core/Entities/ApplicationRoleConnection/RoleConnectionMetadataProperties.cs
@@ -4,6 +4,9 @@ using System.Collections.Immutable;
namespace Discord;
+///
+/// Properties object used to create or modify object.
+///
public class RoleConnectionMetadataProperties
{
private const int MaxKeyLength = 50;
diff --git a/src/Discord.Net.Core/Entities/ApplicationRoleConnection/RoleConnectionMetadataType.cs b/src/Discord.Net.Core/Entities/ApplicationRoleConnection/RoleConnectionMetadataType.cs
index 1c0fa623b..50b851ae9 100644
--- a/src/Discord.Net.Core/Entities/ApplicationRoleConnection/RoleConnectionMetadataType.cs
+++ b/src/Discord.Net.Core/Entities/ApplicationRoleConnection/RoleConnectionMetadataType.cs
@@ -3,47 +3,47 @@ using System;
namespace Discord;
///
-/// Represents the type of Application Role Connection Metadata
+/// Represents the type of Application Role Connection Metadata.
///
public enum RoleConnectionMetadataType
{
///
- /// The metadata's integer value is less than or equal to the guild's configured value
+ /// The metadata's integer value is less than or equal to the guild's configured value.
///
IntegerLessOrEqual = 1,
///
- /// The metadata's integer value is greater than or equal to the guild's configured value
+ /// The metadata's integer value is greater than or equal to the guild's configured value.
///
IntegerGreaterOrEqual = 2,
///
- /// The metadata's integer value is equal to the guild's configured value
+ /// The metadata's integer value is equal to the guild's configured value.
///
IntegerEqual = 3,
///
- /// The metadata's integer value is not equal to the guild's configured value
+ /// The metadata's integer value is not equal to the guild's configured value.
///
IntegerNotEqual = 4,
///
- /// The metadata's ISO8601 string value is less or equal to the guild's configured value
+ /// The metadata's ISO8601 string value is less or equal to the guild's configured value.
///
DateTimeLessOrEqual = 5,
///
- /// The metadata's ISO8601 string value is greater to the guild's configured value
+ /// The metadata's ISO8601 string value is greater to the guild's configured value.
///
DateTimeGreaterOrEqual = 6,
///
- /// The metadata's integer value is equal to the guild's configured value
+ /// The metadata's integer value is equal to the guild's configured value.
///
BoolEqual = 7,
///
- /// The metadata's integer value is equal to the guild's configured value
+ /// The metadata's integer value is equal to the guild's configured value.
///
BoolNotEqual = 8,
}