diff --git a/src/Discord.Net.Core/Entities/Users/IConnection.cs b/src/Discord.Net.Core/Entities/Users/IConnection.cs
index 96d271bd4..b518ab35a 100644
--- a/src/Discord.Net.Core/Entities/Users/IConnection.cs
+++ b/src/Discord.Net.Core/Entities/Users/IConnection.cs
@@ -4,26 +4,20 @@ namespace Discord
{
public interface IConnection
{
- ///
- /// ID of the connection account.
- ///
+ /// Gets the ID of the connection account.
+ /// Gets the ID of the connection account.
string Id { get; }
- ///
- /// The service of the connection (twich, youtube).
- ///
+ /// Gets the service of the connection (twitch, youtube).
+ /// Gets the service of the connection (twitch, youtube).
string Type { get; }
- ///
- /// The username of the connection account.
- ///
+ /// Gets the username of the connection account.
+ /// Gets the username of the connection account.
string Name { get; }
- ///
- /// Whether the connection is revoked.
- ///
+ /// Gets whether the connection is revoked.
+ /// Gets whether the connection is revoked.
bool IsRevoked { get; }
-
- ///
- /// A of integration IDs.
- ///
+ /// Gets a of integration IDs.
+ /// Gets a of integration IDs.
IReadOnlyCollection IntegrationIds { get; }
}
}