Skip to content

Commit

Permalink
Merge pull request #322 from choiwab/bugfix/command-message-fix
Browse files Browse the repository at this point in the history
Command Message Fix
  • Loading branch information
rxchell authored Nov 10, 2024
2 parents f1cd1e2 + daa1423 commit 42c1568
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/main/java/seedu/address/logic/Messages.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ public static String formatPerson(PersonDescriptor personDescriptor) {
+ "Phone: " + personDescriptor.getPhone() + "\n"
+ "Email: " + personDescriptor.getEmail() + "\n"
+ "Address: " + personDescriptor.getAddress() + "\n"
+ "Status: " + personDescriptor.getStatus() + "\n"
+ "Tags: " + personDescriptor.getTags().toString() + "\n";
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public class AddPersonCommand extends AddCommand {
+ PREFIX_EMAIL + "[email protected] "
+ PREFIX_ADDRESS + "311, Clementi Ave 2, #02-25 "
+ PREFIX_STATUS + "recovering "
+ PREFIX_TAG + "friends "
+ PREFIX_TAG + "owesMoney";
+ PREFIX_TAG + "obese "
+ PREFIX_TAG + "diabetic";

public static final String MESSAGE_SUCCESS = "New person added: %1$s";
public static final String MESSAGE_DUPLICATE_PERSON = "This person already exists in the address book";
Expand Down

0 comments on commit 42c1568

Please sign in to comment.