From 1d20132104d9ffd8ab871e245766160b36b882de Mon Sep 17 00:00:00 2001 From: Chris Johnston Date: Tue, 31 Jul 2018 22:58:48 -0700 Subject: [PATCH] Rewrote the rest of the returns tags --- .../Entities/Guilds/IGuildIntegration.cs | 2 +- .../Entities/Guilds/IntegrationAccount.cs | 4 ++-- src/Discord.Net.Core/Entities/Users/IConnection.cs | 10 +++++----- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs b/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs index 8dfce11d5..74d3683bb 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. - /// A unique identifier value of this integration. + /// 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 2b7fdbf7c..361cd3962 100644 --- a/src/Discord.Net.Core/Entities/Guilds/IntegrationAccount.cs +++ b/src/Discord.Net.Core/Entities/Guilds/IntegrationAccount.cs @@ -6,10 +6,10 @@ namespace Discord public struct IntegrationAccount { /// Gets the ID of the account. - /// Gets the ID of the account. + /// The unique identifier of this integration account. public string Id { get; } /// Gets the name of the account. - /// Gets the name of the account. + /// A string containing the name of this integration account. public string Name { get; private set; } public override string ToString() => Name; diff --git a/src/Discord.Net.Core/Entities/Users/IConnection.cs b/src/Discord.Net.Core/Entities/Users/IConnection.cs index b518ab35a..446c74e8a 100644 --- a/src/Discord.Net.Core/Entities/Users/IConnection.cs +++ b/src/Discord.Net.Core/Entities/Users/IConnection.cs @@ -5,19 +5,19 @@ namespace Discord public interface IConnection { /// Gets the ID of the connection account. - /// Gets the ID of the connection account. + /// The unique idenitifer of this connection. string Id { get; } /// Gets the service of the connection (twitch, youtube). - /// Gets the service of the connection (twitch, youtube). + /// A string containing the name of this type of connection. string Type { get; } /// Gets the username of the connection account. - /// Gets the username of the connection account. + /// A string containing the name of this connection. string Name { get; } /// Gets whether the connection is revoked. - /// Gets whether the connection is revoked. + /// A value which if true indicates that this connection has been revoked, otherwise false. bool IsRevoked { get; } /// Gets a of integration IDs. - /// Gets a of integration IDs. + /// An containing the unique identifier values of integrations. IReadOnlyCollection IntegrationIds { get; } } }