From a8b550660be4c7994d17d0fbb7c938ad05c83156 Mon Sep 17 00:00:00 2001 From: Steven Date: Thu, 23 Dec 2021 05:39:29 -0500 Subject: [PATCH] Fix images path for select menu section (#1990) --- docs/guides/int_basics/message-components/select-menus.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guides/int_basics/message-components/select-menus.md b/docs/guides/int_basics/message-components/select-menus.md index 5181ddf34..6dfe151b1 100644 --- a/docs/guides/int_basics/message-components/select-menus.md +++ b/docs/guides/int_basics/message-components/select-menus.md @@ -47,11 +47,11 @@ public async Task Spawn() Running this produces this result: -![](Images/image4.png) +![](images/image4.png) And opening the menu we see: -![](Images/image5.png) +![](images/image5.png) Lets handle the selection of an option, We can hook the `SelectMenuExecuted` event to handle our select menu: @@ -73,4 +73,4 @@ public async Task MyMenuHandler(SocketMessageComponent arg) Running this produces this result: -![](Images/image6.png) +![](images/image6.png)