Skip to content

Commit

Permalink
fix: typo change in to it (#243)
Browse files Browse the repository at this point in the history
* fix: typo change in to it

* fix: add missing s to functions
  • Loading branch information
c-git authored Mar 2, 2024
1 parent e961946 commit 2cd2ee9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down

0 comments on commit 2cd2ee9

Please sign in to comment.