From 2cd2ee9753d4a9a9e1a9ba8752d3be4fccc9fc35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?On=C3=A8?= <43485962+c-git@users.noreply.github.com> Date: Sat, 2 Mar 2024 12:24:27 -0500 Subject: [PATCH] fix: typo change in to it (#243) * fix: typo change in to it * fix: add missing s to functions --- macros/src/lib.rs | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/macros/src/lib.rs b/macros/src/lib.rs index 1411b25b3e47..f258ae346a6a 100644 --- a/macros/src/lib.rs +++ b/macros/src/lib.rs @@ -80,7 +80,7 @@ for example for command-specific help (i.e. `~help command_name`). Escape newlin - `broadcast_typing`: Trigger a typing indicator while command runs (prefix only) - `discard_spare_arguments`: Don't throw an error if the user supplies too many arguments (prefix only) - `ephemeral`: Make bot responses ephemeral if possible (slash only) - - Only poise's function, like `poise::send_reply`, respect this preference + - Only poise's functions, like `poise::send_reply`, respect this preference # Function parameters diff --git a/src/lib.rs b/src/lib.rs index a8ce917d06d5..c04cc5d3cb92 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -86,7 +86,7 @@ Some examples for methods you should have in your repertoire: Discord slash commands can be a bit unintuitive at first. If you're unfamiliar, please read this To activate a slash command, your bot -needs to _register_ in on Discord. You may want to do this manually, with a `register` command +needs to _register_ it on Discord. You may want to do this manually, with a `register` command (poise provides [`builtins::register_application_commands_buttons`] as a starting point for that), or you may want to re-register commands automatically on every bot startup. Choose what you prefer. Also see [Registering Slash Commands](#registering-slash-commands).