Skip to content

Commit

Permalink
Minor Javadoc updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonomorris committed Feb 19, 2020
1 parent cc8de49 commit ed76f14
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import java.util.function.Supplier;

/**
* Factory class for creating instances of {@code CliCommand}.
* Factory class for creating instances of {@link CliCommand}.
*/
public class CommandFactory {

Expand Down Expand Up @@ -48,9 +48,9 @@ private CliCommand getInstance() {
}

/**
* Creates a new {@Code CliCommand} instance.
* @param command the
* @return the new instance
* Creates a new {@link CliCommand} instance.
* @param command the {@link Command} to create a new instance of
* @return the new {@code CliCommand} instance
*/
public static CliCommand getInstance (Command command) {
return command.getInstance();
Expand Down

0 comments on commit ed76f14

Please sign in to comment.