Use consistent grammatical tense in command descriptions

Change-Id: Iee7f99ec9f133b1e7cfb73a29e90cc2f28ac75ca
This commit is contained in:
David Pursehouse
2014-03-26 22:22:40 -07:00
parent c06a36c1bf
commit a8861d04f9
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ import javax.inject.Inject;
/**
* Implements a command that allows the user to see the members of a group.
*/
@CommandMetaData(name = "ls-members", description = "Lists the members of a given group")
@CommandMetaData(name = "ls-members", description = "List the members of a given group")
public class ListMembersCommand extends BaseCommand {
@Inject
ListMembersCommandImpl impl;

View File

@@ -43,7 +43,7 @@ import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.List;
@CommandMetaData(name = "set-members", description = "Modifies members of specific group or number of groups")
@CommandMetaData(name = "set-members", description = "Modify members of specific group or number of groups")
public class SetMembersCommand extends SshCommand {
@Option(name = "--add", aliases = {"-a"}, metaVar = "USER", usage = "users that should be added as group member")