Skip to content

Commit

Permalink
Update images
Browse files Browse the repository at this point in the history
  • Loading branch information
howenc committed Nov 10, 2023
1 parent e00dafb commit 0284d6c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ Examples:

<div style="page-break-after: always;"></div>

![result for 'findAlexMeeting'](images/findJohnMeetingResult.png)
![result for 'findJohnMeeting'](images/findJohnMeetingResult.png)

<div style="page-break-after: always;"></div>

Expand Down
Binary file modified docs/images/Ui.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/images/findAlexDavidResult.png
Binary file not shown.
Binary file modified docs/images/findContactResult.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/findJohnMeetingResult.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions src/main/java/seedu/address/model/util/SampleDataUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static Person[] getSamplePersons() {
DateTimeUtil.parse("02.10.2023 1500"), new Status(""), new Remark(""),
getTagSet("neighbours")),
new Person(new Name("David Li"), new Phone("91031282"), new Email("[email protected]"),
LocalDateTime.parse("02.10.2023 1700", FORMAT), new Status(""), new Remark(""),
DateTimeUtil.parse("02.10.2023 1000"), new Status(""), new Remark(""),
getTagSet("colleagues")),
new Person(new Name("Irfan Ibrahim"), new Phone("92492021"), new Email("[email protected]"),
DateTimeUtil.parse("02.10.2023 1900"), new Status(""), new Remark(""),
Expand All @@ -51,12 +51,12 @@ public static Person[] getSamplePersons() {
public static Meeting[] getSampleMeetings() {
return new Meeting[] {
new Meeting(new Title("Meeting with Alex"), new Location("Starbucks"),
LocalDateTime.parse("02.10.2023 1000", FORMAT),
LocalDateTime.parse("02.10.2023 1200", FORMAT),
DateTimeUtil.parse("02.10.2023 1000"),
DateTimeUtil.parse("02.10.2023 1200"),
getAttendeeSet("Alex Yeoh"), getTagSet("work"), new MeetingStatus(false)),
new Meeting(new Title("Meet with team"), new Location("Office meeting room"),
LocalDateTime.parse("03.10.2023 1000", FORMAT),
LocalDateTime.parse("03.10.2023 1200", FORMAT),
DateTimeUtil.parse("02.10.2023 1000"),
DateTimeUtil.parse("03.10.2023 1200"),
getAttendeeSet("Bernice Yu", "David Li"), getTagSet("work"), new MeetingStatus(false)),
};
}
Expand Down

0 comments on commit 0284d6c

Please sign in to comment.