Skip to content

Commit

Permalink
Update User Guide
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxunn committed Oct 26, 2023
1 parent 6b59b0d commit 895af12
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ public class ConvertClientToLeadCommand extends Command {

private final Index index;

/**
* Constructor for convertClientToLead.
*/
public ConvertClientToLeadCommand(Index index) {
requireNonNull(index);
this.index = index;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ public class ConvertLeadToClientCommand extends Command {

private final Index index;

/**
* Constructor for ConvertLeadToClientCommand.
*/
public ConvertLeadToClientCommand(Index index) {
requireNonNull(index);
this.index = index;
Expand Down

0 comments on commit 895af12

Please sign in to comment.