Skip to content

Commit 613b7f6

Browse files
committed
Typos
Fixed some minor typos
1 parent ed8ae12 commit 613b7f6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: guide/docs/popular-topics/reactions.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ hide_table_of_contents: true
66
# Reactions
77

88
Reactions are Discord's way of adding emojis to other messages. Early on, before Discord introduced [components](../interactions/buttons.mdx), this system was largely used to make interactive messages and apps.
9-
Having bots react to messages is less common now, and is somewhat considered legacy behaviour.
9+
Having bots react to messages is less common now, and is somewhat considered legacy behavior.
1010
This guide will teach you the basics of how they work, since they still have their use cases, like reaction role systems and polling.
1111

1212
In Disnake, reactions are represented with <DocsLink reference="disnake.Reaction">Reaction</DocsLink> objects. Whenever you operate on a <DocsLink reference="disnake.Message">Message</DocsLink> you can access a list of reactions attached to that message.
@@ -54,7 +54,7 @@ In this guide we will be providing an example using the <DocsLink reference="dis
5454
Since reactions utilize Emojis this guide will also include a quick primer on how disnake handles emojis
5555
**Emojis have three forms:**
5656

57-
- <DocsLink reference="disnake.Emoji">Emoji</DocsLink> Custom emojis are primarely returned when custom emojis are grabbed
57+
- <DocsLink reference="disnake.Emoji">Emoji</DocsLink> Custom emojis are primarily returned when custom emojis are grabbed
5858
from the guild/bot
5959
- <DocsLink reference="disnake.PartialEmoji">PartialEmoji</DocsLink> Stripped down version of Emoji. Which appears in raw
6060
events or when the bot cannot access the custom emoji
@@ -156,8 +156,8 @@ Notice how second emoji resolved into **:disnake:** because the emoji is on a se
156156
<br />
157157

158158
:::caution
159-
We can only use custom emojis from servers the bot has joined, but we can use them interchangably on those servers.
160-
Bots can make <DocsLink reference="disnake.ui.Button">buttons</DocsLink> using emojis from servers they're not members of, this may or may not be intended behaviour by Discord and should not be relied on.
159+
We can only use custom emojis from servers the bot has joined, but we can use them interchangeably on those servers.
160+
Bots can make <DocsLink reference="disnake.ui.Button">buttons</DocsLink> using emojis from servers they're not members of, this may or may not be intended behavior by Discord and should not be relied on.
161161
:::
162162

163163
<br />

0 commit comments

Comments
 (0)