From 504cbe4b08ff3c85cd4c7d7fa0f810ee76ada70e Mon Sep 17 00:00:00 2001 From: quin lynch Date: Thu, 7 Oct 2021 01:51:45 -0300 Subject: [PATCH] update IThreadChannel summaries --- .../Entities/Channels/IThreadChannel.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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; }