Skip to content

Commit

Permalink
fix: add missing slash
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianmakila committed Jan 28, 2024
1 parent bb40ba3 commit 4d847b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/minecraft/minecraft-extras.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ You may create an instance with the default styling:
```java
// Assuming YourSenderType extends Audience
MinecraftHelp<YourSenderType> help = MinecraftHelp.createNative(
"helpcommand",
"/helpcommand",
commandManager
);
```
Expand All @@ -85,7 +85,7 @@ You may create an instance with the default styling:

```java
MinecraftHelp<YourSenderType> help = MinecraftHelp.create(
"helpcommand",
"/helpcommand",
commandManager,
audienceMapper // YourSenderType -> Audience
);
Expand Down

0 comments on commit 4d847b2

Please sign in to comment.