| @@ -30,7 +30,7 @@ namespace Discord | |||||
| /// Gets the current slow-mode delay for this channel. | /// Gets the current slow-mode delay for this channel. | ||||
| /// </summary> | /// </summary> | ||||
| /// <returns> | /// <returns> | ||||
| /// An <see cref="Int32"/> representing the time in seconds required before the user can send another | |||||
| /// An <see cref="int"/> representing the time in seconds required before the user can send another | |||||
| /// message; <c>0</c> if disabled. | /// message; <c>0</c> if disabled. | ||||
| /// </returns> | /// </returns> | ||||
| int SlowModeInterval { get; } | int SlowModeInterval { get; } | ||||
| @@ -39,7 +39,7 @@ namespace Discord | |||||
| /// <returns> | /// <returns> | ||||
| /// A task that represents the asynchronous operation for adding a reaction to this message. | /// A task that represents the asynchronous operation for adding a reaction to this message. | ||||
| /// </returns> | /// </returns> | ||||
| /// <seealso cref="IUserMessage.AddReactionAsync(IEmote, RequestOptions)"/> | |||||
| /// <seealso cref="IMessage.AddReactionAsync(IEmote, RequestOptions)"/> | |||||
| /// <seealso cref="IEmote"/> | /// <seealso cref="IEmote"/> | ||||
| public static async Task AddReactionsAsync(this IUserMessage msg, IEmote[] reactions, RequestOptions options = null) | public static async Task AddReactionsAsync(this IUserMessage msg, IEmote[] reactions, RequestOptions options = null) | ||||
| { | { | ||||
| @@ -51,7 +51,7 @@ namespace Discord | |||||
| /// </summary> | /// </summary> | ||||
| /// <remarks> | /// <remarks> | ||||
| /// This method does not bulk remove reactions! If you want to clear reactions from a message, | /// This method does not bulk remove reactions! If you want to clear reactions from a message, | ||||
| /// <see cref="IUserMessage.RemoveAllReactionsAsync(RequestOptions)"/> | |||||
| /// <see cref="IMessage.RemoveAllReactionsAsync(RequestOptions)"/> | |||||
| /// </remarks> | /// </remarks> | ||||
| /// <example> | /// <example> | ||||
| /// <code language="cs"> | /// <code language="cs"> | ||||
| @@ -64,7 +64,7 @@ namespace Discord | |||||
| /// <returns> | /// <returns> | ||||
| /// A task that represents the asynchronous operation for removing a reaction to this message. | /// A task that represents the asynchronous operation for removing a reaction to this message. | ||||
| /// </returns> | /// </returns> | ||||
| /// <seealso cref="IUserMessage.RemoveReactionAsync(IEmote, IUser, RequestOptions)"/> | |||||
| /// <seealso cref="IMessage.RemoveReactionAsync(IEmote, IUser, RequestOptions)"/> | |||||
| /// <seealso cref="IEmote"/> | /// <seealso cref="IEmote"/> | ||||
| public static async Task RemoveReactionsAsync(this IUserMessage msg, IUser user, IEmote[] reactions, RequestOptions options = null) | public static async Task RemoveReactionsAsync(this IUserMessage msg, IUser user, IEmote[] reactions, RequestOptions options = null) | ||||
| { | { | ||||
| @@ -270,7 +270,7 @@ namespace Discord | |||||
| /// </summary> | /// </summary> | ||||
| /// <param name="options">The options to be used when sending the request.</param> | /// <param name="options">The options to be used when sending the request.</param> | ||||
| /// <returns> | /// <returns> | ||||
| /// A task that represents the asynchronous get operation. The task result contains an <see cref="Int32"/> | |||||
| /// A task that represents the asynchronous get operation. The task result contains an <see cref="int"/> | |||||
| /// that represents the number of shards that should be used with this account. | /// that represents the number of shards that should be used with this account. | ||||
| /// </returns> | /// </returns> | ||||
| Task<int> GetRecommendedShardCountAsync(RequestOptions options = null); | Task<int> GetRecommendedShardCountAsync(RequestOptions options = null); | ||||
| @@ -49,8 +49,7 @@ namespace Discord | |||||
| /// clock for rate-limiting. Defaults to <c>true</c>. | /// clock for rate-limiting. Defaults to <c>true</c>. | ||||
| /// </summary> | /// </summary> | ||||
| /// <remarks> | /// <remarks> | ||||
| /// This property can also be set in <see cref="DiscordConfig">. | |||||
| /// | |||||
| /// This property can also be set in <see cref="DiscordConfig"/>. | |||||
| /// On a per-request basis, the system clock should only be disabled | /// On a per-request basis, the system clock should only be disabled | ||||
| /// when millisecond precision is especially important, and the | /// when millisecond precision is especially important, and the | ||||
| /// hosting system is known to have a desynced clock. | /// hosting system is known to have a desynced clock. | ||||
| @@ -78,7 +78,7 @@ namespace Discord.Rest | |||||
| /// Gets the current slow-mode delay of the created channel. | /// Gets the current slow-mode delay of the created channel. | ||||
| /// </summary> | /// </summary> | ||||
| /// <returns> | /// <returns> | ||||
| /// An <see cref="Int32"/> representing the time in seconds required before the user can send another | |||||
| /// An <see cref="int"/> representing the time in seconds required before the user can send another | |||||
| /// message; <c>0</c> if disabled. | /// message; <c>0</c> if disabled. | ||||
| /// <c>null</c> if this is not mentioned in this entry. | /// <c>null</c> if this is not mentioned in this entry. | ||||
| /// </returns> | /// </returns> | ||||
| @@ -95,7 +95,7 @@ namespace Discord.Rest | |||||
| /// Gets the bit-rate that the clients in the created voice channel are requested to use. | /// Gets the bit-rate that the clients in the created voice channel are requested to use. | ||||
| /// </summary> | /// </summary> | ||||
| /// <returns> | /// <returns> | ||||
| /// An <see cref="Int32"/> representing the bit-rate (bps) that the created voice channel defines and requests the | |||||
| /// An <see cref="int"/> representing the bit-rate (bps) that the created voice channel defines and requests the | |||||
| /// client(s) to use. | /// client(s) to use. | ||||
| /// <c>null</c> if this is not mentioned in this entry. | /// <c>null</c> if this is not mentioned in this entry. | ||||
| /// </returns> | /// </returns> | ||||
| @@ -71,7 +71,7 @@ namespace Discord.Rest | |||||
| /// Gets the slow-mode delay of the deleted channel. | /// Gets the slow-mode delay of the deleted channel. | ||||
| /// </summary> | /// </summary> | ||||
| /// <returns> | /// <returns> | ||||
| /// An <see cref="Int32"/> representing the time in seconds required before the user can send another | |||||
| /// An <see cref="int"/> representing the time in seconds required before the user can send another | |||||
| /// message; <c>0</c> if disabled. | /// message; <c>0</c> if disabled. | ||||
| /// <c>null</c> if this is not mentioned in this entry. | /// <c>null</c> if this is not mentioned in this entry. | ||||
| /// </returns> | /// </returns> | ||||
| @@ -88,7 +88,7 @@ namespace Discord.Rest | |||||
| /// Gets the bit-rate of this channel if applicable. | /// Gets the bit-rate of this channel if applicable. | ||||
| /// </summary> | /// </summary> | ||||
| /// <returns> | /// <returns> | ||||
| /// An <see cref="Int32"/> representing the bit-rate set of the voice channel. | |||||
| /// An <see cref="int"/> representing the bit-rate set of the voice channel. | |||||
| /// <c>null</c> if this is not mentioned in this entry. | /// <c>null</c> if this is not mentioned in this entry. | ||||
| /// </returns> | /// </returns> | ||||
| public int? Bitrate { get; } | public int? Bitrate { get; } | ||||
| @@ -32,7 +32,7 @@ namespace Discord.Rest | |||||
| /// Gets the current slow-mode delay of this channel. | /// Gets the current slow-mode delay of this channel. | ||||
| /// </summary> | /// </summary> | ||||
| /// <returns> | /// <returns> | ||||
| /// An <see cref="Int32"/> representing the time in seconds required before the user can send another | |||||
| /// An <see cref="int"/> representing the time in seconds required before the user can send another | |||||
| /// message; <c>0</c> if disabled. | /// message; <c>0</c> if disabled. | ||||
| /// <c>null</c> if this is not mentioned in this entry. | /// <c>null</c> if this is not mentioned in this entry. | ||||
| /// </returns> | /// </returns> | ||||
| @@ -49,7 +49,7 @@ namespace Discord.Rest | |||||
| /// Gets the bit-rate of this channel if applicable. | /// Gets the bit-rate of this channel if applicable. | ||||
| /// </summary> | /// </summary> | ||||
| /// <returns> | /// <returns> | ||||
| /// An <see cref="Int32"/> representing the bit-rate set for the voice channel; | |||||
| /// An <see cref="int"/> representing the bit-rate set for the voice channel; | |||||
| /// <c>null</c> if this is not mentioned in this entry. | /// <c>null</c> if this is not mentioned in this entry. | ||||
| /// </returns> | /// </returns> | ||||
| public int? Bitrate { get; } | public int? Bitrate { get; } | ||||