Browse Source

Swapped out 'id' for 'snowflake identifier

pull/1161/head
Casino Boyale 7 years ago
parent
commit
b1c955b8bc
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/Discord.Net.WebSocket/Entities/Channels/SocketDMChannel.cs
  2. +1
    -1
      src/Discord.Net.WebSocket/Entities/Channels/SocketTextChannel.cs

+ 1
- 1
src/Discord.Net.WebSocket/Entities/Channels/SocketDMChannel.cs View File

@@ -132,7 +132,7 @@ namespace Discord.WebSocket
/// <summary> /// <summary>
/// Gets a user in this channel from the provided <paramref name="id"/>. /// Gets a user in this channel from the provided <paramref name="id"/>.
/// </summary> /// </summary>
/// <param name="id">The ID of the user.</param>
/// <param name="id">The snowflake identifier of the user.</param>
/// <returns> /// <returns>
/// A <see cref="SocketUser"/> object that is a recipient of this channel; otherwise <c>null</c>. /// A <see cref="SocketUser"/> object that is a recipient of this channel; otherwise <c>null</c>.
/// </returns> /// </returns>


+ 1
- 1
src/Discord.Net.WebSocket/Entities/Channels/SocketTextChannel.cs View File

@@ -77,7 +77,7 @@ namespace Discord.WebSocket
/// <summary> /// <summary>
/// Gets the message associated with the passed <paramref name="id"/>. /// Gets the message associated with the passed <paramref name="id"/>.
/// </summary> /// </summary>
/// <param name="id">The id of the message you want to retrieve</param>
/// <param name="id">The snowflake identifier of the message you want to retrieve</param>
/// <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>
/// An awaitable <see cref="Task"/>. /// An awaitable <see cref="Task"/>.


Loading…
Cancel
Save