Browse Source

Fixed typo in code example. (#2552)

pull/2572/head
Zach Goodson GitHub 2 years ago
parent
commit
4aded83ab6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      docs/guides/int_basics/application-commands/slash-commands/responding-ephemerally.md

+ 2
- 2
docs/guides/int_basics/application-commands/slash-commands/responding-ephemerally.md View File

@@ -15,9 +15,9 @@ When responding with either `FollowupAsync` or `RespondAsync` you can pass in an
Let's use this in our list role command.

```cs
await command.RespondAsync(embed: embedBuiler.Build(), ephemeral: true);
await command.RespondAsync(embed: embedBuilder.Build(), ephemeral: true);
```

Running the command now only shows the message to us!

![ephemeral command](images/ephemeral1.png)
![ephemeral command](images/ephemeral1.png)

Loading…
Cancel
Save