Skip to content

Commit

Permalink
Amend bug in formatting Person for display
Browse files Browse the repository at this point in the history
  • Loading branch information
tsulim committed Apr 12, 2024
1 parent 2c1ae30 commit 59e7c5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/staffconnect/logic/Messages.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ public static String format(Person person) {
.append("; Phone: ")
.append(person.getPhone())
.append("; Email: ")
.append(person.getFaculty())
.append("; Faculty: ")
.append(person.getEmail())
.append("; Faculty: ")
.append(person.getFaculty())
.append("; Venue: ")
.append(person.getVenue())
.append("; Module: ")
Expand Down

0 comments on commit 59e7c5b

Please sign in to comment.