Browse Source

Add missing periods to InteractionResponseType

pull/1923/head
quin lynch 3 years ago
parent
commit
c44d7405c0
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/Discord.Net.Core/Entities/Interactions/InteractionResponseType.cs

+ 3
- 3
src/Discord.Net.Core/Entities/Interactions/InteractionResponseType.cs View File

@@ -45,17 +45,17 @@ namespace Discord
DeferredChannelMessageWithSource = 5, DeferredChannelMessageWithSource = 5,


/// <summary> /// <summary>
/// For components: ACK an interaction and edit the original message later; the user does not see a loading state
/// For components: ACK an interaction and edit the original message later; the user does not see a loading state.
/// </summary> /// </summary>
DeferredUpdateMessage = 6, DeferredUpdateMessage = 6,


/// <summary> /// <summary>
/// For components: edit the message the component was attached to
/// For components: edit the message the component was attached to.
/// </summary> /// </summary>
UpdateMessage = 7, UpdateMessage = 7,


/// <summary> /// <summary>
/// Respond with a set of choices to a autocomplete interaction
/// Respond with a set of choices to a autocomplete interaction.
/// </summary> /// </summary>
ApplicationCommandAutocompleteResult = 8 ApplicationCommandAutocompleteResult = 8
} }


Loading…
Cancel
Save