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 developer guide sequence diagram #238

Merged
merged 2 commits into from
Apr 15, 2024
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
Binary file modified docs/DiagramImages/img_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ Calculates the total expense for all activities of the given type in the travel

Format: `totalexpense [/type TYPE]`

* The `TYPE` must be a valid type (Accomodation, Food, Landmark, TravelActivity)
* The `TYPE` must be a valid type (Accomodation, Food, Landmark, General)

Example of usage:
`totalexpense /type food`
Expand Down
12 changes: 6 additions & 6 deletions docs/plantUML diagrams/UpdateSequenceDiagram.puml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@

actor User as user

box OmniTravel

participant ":OmniTravel" as OmniTravel

box Ui

participant ":Ui" as Ui

box Parser

participant ":Parser" as Parser
end box

box TravelActivityType


participant ":TravelActivityList" as TravelActivityList
participant ":TravelActivity" as TravelActivity
end box


user -> OmniTravel : "update 1 /date 2019-12-12 /duration 2 hours"
activate OmniTravel
Expand Down
Loading