Skip to content

Commit

Permalink
Merge pull request #257 from Vangmay/update-developerguide-language
Browse files Browse the repository at this point in the history
Fix language
  • Loading branch information
rxchell authored Nov 10, 2024
2 parents 6020344 + b6f20ea commit f669902
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/DeveloperGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,12 @@ How the parsing works:

The `Model` component,

* with regards to `Person` objects:
* In regard to `Person` objects:
* stores the details of a person in a `PersonDescriptor` object
* stores the `PersonDescriptor` object with a `personId` in the `Person` class.
* stores the address book data i.e., all `Person` objects (which are contained in a `UniquePersonList` object).
* stores the currently 'selected' `Person` objects (e.g., results of a search query) as a separate _filtered_ list which is exposed to outsiders as an unmodifiable `ObservableList<Person>` that can be 'observed' e.g. the UI can be bound to this list so that the UI automatically updates when the data in the list change.
* with regards to `Appointment` objects:
* In regard to `Appointment` objects:
* stores the details of an appointment in an `AppointmentDescriptor` object
* stores the `AppointmentDescriptor` object with a `Person` and `appointmentId` in the `Appointment` class.
* stores the address book data i.e., all `Appointment` objects (which are contained in a `UniqueAppointmentList` object).
Expand Down

0 comments on commit f669902

Please sign in to comment.