We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b85889 commit e29ccdcCopy full SHA for e29ccdc
src/interactionRouter/autoCompleteKeyBuilder.ts
@@ -44,12 +44,12 @@ export interface APIApplicationCommandAutocompleteInteractionModified {
44
* const weather = router.command(
45
* (builder) =>
46
* builder
47
- * .setName("weather") // The command name
48
- * .setDescription("QuQuery weather information!") // The command description
+ * .setName("weather")
+ * .setDescription("Query weather information!")
49
* .addStringOption(option =>
50
* option
51
- * .setName("city") // Option name
52
- * .setDescription("City to get the weather for") // Option description
+ * .setName("city")
+ * .setDescription("City to get the weather for")
53
* .setAutocomplete(true) // Enable autocomplete for this option
54
* ),
55
* handler
0 commit comments