Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #141

Merged
merged 1 commit into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/DeveloperGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ Step 4: The `Model` will then update the in-memory `FilteredList<Prescription>`

The following object oriented domain model shows the class structure of the problem domain.

<puml src="diagrams/CheckInteraction.puml" height="350" />
<puml src="diagrams/CheckInteractionOOD.puml" height="350" />

### \[Proposed\] Undo/redo feature

Expand Down
5 changes: 3 additions & 2 deletions docs/diagrams/CheckInteractionOOD.puml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ skinparam arrowThickness 1.1
skinparam arrowColor MODEL_COLOR
skinparam classBackgroundColor MODEL_COLOR

Model "1" --- "1" PrescriptionsList
PrescriptionsList "1" --- "*" Prescription
Prescription -- "conflictingDrugs *" Drug

Prescription --- "*" Drug
note on link: A prescription can have any number of conflicting drugs

@enduml
Loading