diff --git a/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs b/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs
index 74d3683bb..4d6100d98 100644
--- a/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs
+++ b/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs
@@ -5,7 +5,7 @@ namespace Discord
public interface IGuildIntegration
{
/// Gets the integration ID.
- /// The unique identifier value of this integration.
+ /// An representing the unique identifier value of this integration.
ulong Id { get; }
/// Gets the integration name.
/// A string containing the name of this integration.
diff --git a/src/Discord.Net.Core/Entities/Guilds/IntegrationAccount.cs b/src/Discord.Net.Core/Entities/Guilds/IntegrationAccount.cs
index 361cd3962..637bf969b 100644
--- a/src/Discord.Net.Core/Entities/Guilds/IntegrationAccount.cs
+++ b/src/Discord.Net.Core/Entities/Guilds/IntegrationAccount.cs
@@ -6,7 +6,7 @@ namespace Discord
public struct IntegrationAccount
{
/// Gets the ID of the account.
- /// The unique identifier of this integration account.
+ /// A unique identifier of this integration account.
public string Id { get; }
/// Gets the name of the account.
/// A string containing the name of this integration account.
diff --git a/src/Discord.Net.Core/Entities/Users/IConnection.cs b/src/Discord.Net.Core/Entities/Users/IConnection.cs
index 446c74e8a..f0fea75ad 100644
--- a/src/Discord.Net.Core/Entities/Users/IConnection.cs
+++ b/src/Discord.Net.Core/Entities/Users/IConnection.cs
@@ -5,7 +5,7 @@ namespace Discord
public interface IConnection
{
/// Gets the ID of the connection account.
- /// The unique idenitifer of this connection.
+ /// A representing the unique identifier value of this connection.
string Id { get; }
/// Gets the service of the connection (twitch, youtube).
/// A string containing the name of this type of connection.
@@ -17,7 +17,10 @@ namespace Discord
/// A value which if true indicates that this connection has been revoked, otherwise false.
bool IsRevoked { get; }
/// Gets a of integration IDs.
- /// An containing the unique identifier values of integrations.
+ ///
+ /// An containing
+ /// representations of unique identifier values of integrations.
+ ///
IReadOnlyCollection IntegrationIds { get; }
}
}