Skip to content

Commit 375b806

Browse files
committed
Fix two typos
1 parent a1d0da9 commit 375b806

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/mcmoddev/mmdbot/modules/commands/server/tricks/CmdAddTrick.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public final class CmdAddTrick extends Command {
4949
public CmdAddTrick() {
5050
super();
5151
name = "addtrick";
52-
help = "Adds a new trick, either a string or an embed, if a string you only need the <names] and <body>.";
52+
help = "Adds a new trick, either a string or an embed, if a string you only need the <names> and <body>.";
5353
category = new Category("Info");
5454
arguments = "<string> (or) <embed> <name1> [name2 name3] | <trick content body> (or) <title> "
5555
+ "| <description> | <colour-as-hex-code>";

src/main/java/com/mcmoddev/mmdbot/modules/logging/users/EventUserLeft.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ private void deleteRecentRequests(final Guild guild, final User leavingUser) {
139139
builder.setAuthor(leavingUser.getAsTag(), leavingUser.getEffectiveAvatarUrl());
140140
builder.appendDescription("Deleted request from ")
141141
.appendDescription(leavingUser.getAsMention())
142-
.appendDescription(" as the user left the user.");
142+
.appendDescription(" as the user left the server.");
143143
builder.addField("Message Creation Time",
144144
TimeFormat.DATE_TIME_SHORT.format(message.getTimeCreated()), true);
145145
builder.addField("Auto-Deletion on Leave Duration", deletionTime + " hour(s)", true);

0 commit comments

Comments
 (0)