Skip to content

Commit e9094e6

Browse files
Update wording for greetings commands descriptions
1 parent c036f2e commit e9094e6

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/technobot/commands/greetings/FarewellCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class FarewellCommand extends Command {
2222
public FarewellCommand(TechnoBot bot) {
2323
super(bot);
2424
this.name = "farewell";
25-
this.description = "Sets a farewell to be sent to the welcome channel when a member leaves.";
25+
this.description = "Set a farewell to be sent to the welcome channel when a member leaves.";
2626
this.category = Category.GREETINGS;
2727
this.args.add(new OptionData(OptionType.STRING, "message", "The message to send as a farewell"));
2828
this.permission = Permission.MANAGE_SERVER;

src/main/java/technobot/commands/greetings/GreetCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class GreetCommand extends Command {
2222
public GreetCommand(TechnoBot bot) {
2323
super(bot);
2424
this.name = "greet";
25-
this.description = "Sets a message to be sent to the welcome channel when a member joins.";
25+
this.description = "Set a greeting to be sent to the welcome channel when a member joins.";
2626
this.category = Category.GREETINGS;
2727
this.args.add(new OptionData(OptionType.STRING, "message", "The message to send as a greeting"));
2828
this.permission = Permission.MANAGE_SERVER;

src/main/java/technobot/commands/greetings/JoinDMCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class JoinDMCommand extends Command {
2222
public JoinDMCommand(TechnoBot bot) {
2323
super(bot);
2424
this.name = "join-dm";
25-
this.description = "Sets a message to be private messaged when a member joins.";
25+
this.description = "Set a private message to be sent when a member joins.";
2626
this.category = Category.GREETINGS;
2727
this.args.add(new OptionData(OptionType.STRING, "message", "The message to send as a DM"));
2828
this.permission = Permission.MANAGE_SERVER;

0 commit comments

Comments
 (0)