From fb5252511af395959d77829da3c1b6a6b6991edf Mon Sep 17 00:00:00 2001 From: Steven Date: Thu, 23 Dec 2021 11:01:44 -0500 Subject: [PATCH] fix images; fix closing brace on cs ref (#1992) --- docs/guides/int_basics/message-components/buttons-in-depth.md | 2 +- .../int_basics/message-components/responding-to-buttons.md | 2 +- docs/guides/int_framework/post-execution.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guides/int_basics/message-components/buttons-in-depth.md b/docs/guides/int_basics/message-components/buttons-in-depth.md index f9fd67515..5da48c69b 100644 --- a/docs/guides/int_basics/message-components/buttons-in-depth.md +++ b/docs/guides/int_basics/message-components/buttons-in-depth.md @@ -28,7 +28,7 @@ This is the property sent to you by discord when a button is clicked. It is not Styling your buttons are important for indicating different actions: -![](Images/image3.png) +![](images/image3.png) You can do this by using the `ButtonStyle` which has all the styles defined. diff --git a/docs/guides/int_basics/message-components/responding-to-buttons.md b/docs/guides/int_basics/message-components/responding-to-buttons.md index 00d651f6b..7546c6fe2 100644 --- a/docs/guides/int_basics/message-components/responding-to-buttons.md +++ b/docs/guides/int_basics/message-components/responding-to-buttons.md @@ -34,4 +34,4 @@ public async Task MyButtonHandler(SocketMessageComponent component) Running it and clicking the button: -![](Images/image2.png) \ No newline at end of file +![](images/image2.png) \ No newline at end of file diff --git a/docs/guides/int_framework/post-execution.md b/docs/guides/int_framework/post-execution.md index c68d14fa5..70da8ad1e 100644 --- a/docs/guides/int_framework/post-execution.md +++ b/docs/guides/int_framework/post-execution.md @@ -48,7 +48,7 @@ Interaction Result come in a handful of different flavours: Every time a command gets executed, Interaction Service raises a `CommandExecuted` event. These events can be used to create a post-execution pipeline. -[!code-csharp[Error Review](samples/postexecution/error_review.cs) +[!code-csharp[Error Review](samples/postexecution/error_review.cs)] ## Log Event