diff --git a/src/Discord.Net.Core/Entities/Channels/IThreadChannel.cs b/src/Discord.Net.Core/Entities/Channels/IThreadChannel.cs index 72d65a2e8..e20d87d57 100644 --- a/src/Discord.Net.Core/Entities/Channels/IThreadChannel.cs +++ b/src/Discord.Net.Core/Entities/Channels/IThreadChannel.cs @@ -17,37 +17,37 @@ namespace Discord ThreadType Type { get; } /// - /// if the current user has joined this thread, otherwise . + /// Gets whether or not the current user has joined this thread. /// bool HasJoined { get; } /// - /// if the current thread is archived, otherwise . + /// Gets whether or not the current thread is archived. /// bool IsArchived { get; } /// - /// Duration to automatically archive the thread after recent activity. + /// Gets the duration of time before the thread is automatically archived after no activity. /// ThreadArchiveDuration AutoArchiveDuration { get; } /// - /// Timestamp when the thread's archive status was last changed, used for calculating recent activity. + /// Gets the timestamp when the thread's archive status was last changed, used for calculating recent activity. /// DateTimeOffset ArchiveTimestamp { get; } /// - /// if the current thread is locked, otherwise + /// Gets whether or not the current thread is locked. /// bool IsLocked { get; } /// - /// An approximate count of users in a thread, stops counting at 50. + /// Gets an approximate count of users in a thread, stops counting after 50. /// int MemberCount { get; } /// - /// An approximate count of messages in a thread, stops counting at 50. + /// Gets an approximate count of messages in a thread, stops counting after 50. /// int MessageCount { get; }