Skip to content

Commit

Permalink
Change add command success message to have a new line for each field
Browse files Browse the repository at this point in the history
  • Loading branch information
erv-teo committed Mar 20, 2024
1 parent 9ed8cb0 commit de2c5cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/seedu/address/logic/Messages.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ public static String format(Person person) {
builder.append(person.getName())
.append("\n IC: ")
.append(person.getIc())
.append(" DOB: ")
.append("\nDOB: ")
.append(person.getDob())
.append("\n Admitted: ")
.append(person.getAdmissionDate())
.append(" Ward: ")
.append("\nWard: ")
.append(person.getWard())
.append("\n Tags: ")
.append(person.getTags());
Expand Down

0 comments on commit de2c5cb

Please sign in to comment.