Skip to content

Commit 5868a22

Browse files
authored
Merge pull request #91 from TheCurle/3.0-typos
Fix some typos that i found.
2 parents dc702a1 + 375b806 commit 5868a22

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/main/java/com/mcmoddev/mmdbot/modules/commands/bot/info/CmdHelp.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ public static void execute(CommandEvent e) {
7272
* Currently, this just creates a left and right arrow.
7373
* Left arrow scrolls back a page. Right arrow scrolls forward a page.
7474
*
75-
* @param start The quote number at the start of the current page.
76-
* @return A row of buttons to go back and forth by one page in a quote list.
75+
* @param start The command at the start of the current page.
76+
* @return A row of buttons to go back and forth by one page in the command list.
7777
*/
7878
private static Component[] createScrollButtons(int start) {
7979
List<Component> components = new ArrayList<>();

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)