Skip to content

Commit 4bad53c

Browse files
committed
fix wrong text
1 parent 8f697c6 commit 4bad53c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/duke/Event.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ public Event(String description, LocalDateTime at) {
2323

2424
@Override
2525
public String toString() {
26-
return "[E]" + super.toString() + " (by: " + at.format(DateTimeFormatter.ofPattern("MMM d yyyy h:mma")) + ")";
26+
return "[E]" + super.toString() + " (at: " + at.format(DateTimeFormatter.ofPattern("MMM d yyyy h:mma")) + ")";
2727
}
2828
}

0 commit comments

Comments
 (0)