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

Update DG with the correct diagram names #127

Merged
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
16 changes: 8 additions & 8 deletions docs/DeveloperGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ Step 2. The user executes `add n/John Doe …` to add the person in the address

The following sequence diagram shows how an undo operation goes through the `Logic` component:

<puml src="diagrams/AddCommandSequenceDiagram.puml" alt="AddCommandSequenceDiagram" />
<puml src="diagrams/AddCommandDiagram.puml" alt="AddCommandDiagram" />

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good!


<box type="info" seamless>

Expand All @@ -195,7 +195,7 @@ The following sequence diagram shows how an undo operation goes through the `Log

The following activity diagram summarizes what happens when a user executes a new command:

<puml src="diagrams/AddCommandActivityDiagram.puml" width="250" />
<puml src="diagrams/AddCommandActivityDiagram.puml" width="250" align="center"/>

#### Design Considerations & Alternatives Considered:

Expand Down Expand Up @@ -255,7 +255,7 @@ The following sequence diagram shows how an addnote operation goes through the `

The following activity diagram summarizes what happens when a user executes a new command:

<puml src="diagrams/AddNoteCommandActivityDiagram.puml" width="250" />
<puml src="diagrams/AddNoteCommandActivityDiagram.puml" width="250" align="center"/>

#### Design Considerations & Alternatives Considered

Expand Down Expand Up @@ -312,7 +312,7 @@ The following sequence diagram shows how a find operation goes through the `Logi

The following activity diagram summarizes what happens when a user executes a new command:

<puml src="diagrams/FindCommandActivityDiagram.puml" width="250" />
<puml src="diagrams/FindCommandActivityDiagram.puml" width="250" align="center"/>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this nicely centralizes the image :)


#### Design Considerations & Alternatives Considered

Expand Down Expand Up @@ -347,7 +347,7 @@ The delete command calls `Model#deletePerson(Person target)`, causing the modifi

The following sequence diagram shows how a delete operation goes through the `Logic` component:

<puml src="diagrams/DeleteSequenceDiagram.puml" alt="FindSequenceDiagram" />
<puml src="diagrams/DeleteSequenceDiagram.puml" alt="DeleteSequenceDiagram" />

<box type="info" seamless>

Expand All @@ -357,7 +357,7 @@ The following sequence diagram shows how a delete operation goes through the `Lo

The following activity diagram summarizes what happens when a user executes a new command:

<puml src="diagrams/DeleteCommandActivityDiagram.puml" width="250" />
<puml src="diagrams/DeleteCommandActivityDiagram.puml" width="250" align="center"/>

#### Design Considerations & Alternatives Considered

Expand Down Expand Up @@ -401,7 +401,7 @@ The following sequence diagram shows how an edit operation goes through the `Log

The following activity diagram summarizes what happens when a user executes a new command:

<puml src="diagrams/EditCommandActivityDiagram.puml" width="250" />
<puml src="diagrams/EditCommandActivityDiagram.puml" width="250" align="center"/>

#### Design Considerations & Alternatives Considered

Expand Down Expand Up @@ -446,7 +446,7 @@ The following sequence diagram shows how a show operation goes through the `Logi

The following activity diagram summarizes what happens when a user executes a new command:

<puml src="diagrams/ShowCommandActivityDiagram.puml" width="250" />
<puml src="diagrams/ShowCommandActivityDiagram.puml" width="250" align="center"/>

#### Design Considerations & Alternatives Considered

Expand Down
Loading