Skip to content

Commit

Permalink
Docs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DTCurrie committed Sep 18, 2022
1 parent c8b681c commit b9cbc1c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/accept-button.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ACCEPT_BUTTON_ID = 'accept';

/**
* The reroll button with a custom id of {rerollButtonId}
* @returns {Button Builder}
* @returns {ButtonBuilder}
*/
function createAcceptButton() {
return new ButtonBuilder()
Expand Down
2 changes: 1 addition & 1 deletion lib/reroll-button.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const REROLL_BUTTON_ID = 'reroll';

/**
* The reroll button with a custom id of {rerollButtonId}
* @returns {Button Builder}
* @returns {ButtonBuilder}
*/
function createRerollButton() {
return new ButtonBuilder()
Expand Down
2 changes: 1 addition & 1 deletion lib/trait-roll-options.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/**
* Gets the common options for trait rolls: trait, modifier, and nickname.
* @param {CommandInteraction} interaction The slash command interaction for the trait roll
* @returns {{ trait?: number, modifier?: string, nickname?: string }} The provided options
* @returns {{ trait: number | undefined, modifier: string | undefined, nickname: string | undefined }} The provided options
*/
function getTraitRollOptions(interaction) {
const trait = interaction.options.getInteger('trait');
Expand Down

0 comments on commit b9cbc1c

Please sign in to comment.