Browse Source

fix images; fix closing brace on cs ref (#1992)

tags/3.1.0
Steven GitHub 3 years ago
parent
commit
fb5252511a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      docs/guides/int_basics/message-components/buttons-in-depth.md
  2. +1
    -1
      docs/guides/int_basics/message-components/responding-to-buttons.md
  3. +1
    -1
      docs/guides/int_framework/post-execution.md

+ 1
- 1
docs/guides/int_basics/message-components/buttons-in-depth.md View File

@@ -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: 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. You can do this by using the `ButtonStyle` which has all the styles defined.




+ 1
- 1
docs/guides/int_basics/message-components/responding-to-buttons.md View File

@@ -34,4 +34,4 @@ public async Task MyButtonHandler(SocketMessageComponent component)


Running it and clicking the button: Running it and clicking the button:


![](Images/image2.png)
![](images/image2.png)

+ 1
- 1
docs/guides/int_framework/post-execution.md View File

@@ -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. Every time a command gets executed, Interaction Service raises a `CommandExecuted` event.
These events can be used to create a post-execution pipeline. 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 ## Log Event




Loading…
Cancel
Save