Browse Source

Swapped out 'id' for 'snowflake identifier'

pull/1161/head
Casino Boyale 7 years ago
parent
commit
80b128479f
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>
/// Gets a user in this channel from the provided <paramref name="id"/>.
/// </summary>
/// <param name="id">The ID of the user.</param>
/// <param name="id">The snowflake identifier of the user.</param>
/// <returns>
/// A <see cref="SocketUser"/> object that is a recipient of this channel; otherwise <c>null</c>.
/// </returns>


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

@@ -77,7 +77,7 @@ namespace Discord.WebSocket
/// <summary>
/// Gets the message associated with the passed <paramref name="id"/>.
/// </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>
/// <returns>
/// An awaitable <see cref="Task"/>.


Loading…
Cancel
Save