Skip to content

Commit

Permalink
Merge pull request #299 from shishirbychapur/master
Browse files Browse the repository at this point in the history
Format DG
  • Loading branch information
shishirbychapur committed Nov 14, 2023
2 parents 7f141d3 + 7f23d39 commit d48633e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/DeveloperGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Refer to the guide [_Setting up and getting started_](SettingUp.md).

### Architecture

<puml src="diagrams/ArchitectureDiagram.puml" />
<puml src="diagrams/ArchitectureDiagram.puml" width="280 />

The **_Architecture Diagram_** given above explains the high-level design of the App.

Expand Down Expand Up @@ -118,7 +118,7 @@ For example, new features can be added to the `Storage` component without affect
The _Sequence Diagram_ below shows how the components interact with each other for the scenario where the user issues
the command `delete 1`.

<puml src="diagrams/ArchitectureSequenceDiagram.puml" />
<puml src="diagrams/ArchitectureSequenceDiagram.puml" width="574"/>

Each of the four main components (also shown in the diagram above),

Expand Down Expand Up @@ -171,7 +171,7 @@ The `UI` component,

Here's a (partial) class diagram of the `Logic` component:

<puml src="diagrams/LogicClassDiagram.puml" />
<puml src="diagrams/LogicClassDiagram.puml" width="550"/>

The sequence diagram below illustrates the interactions within the `Logic` component, taking `execute("delete 1")` API
call as an example.
Expand All @@ -196,7 +196,7 @@ How the `Logic` component works:

Here are the other classes in `Logic` (omitted from the class diagram above) that are used for parsing a user command:

<puml src="diagrams/ParserClasses.puml" />
<puml src="diagrams/ParserClasses.puml" width="600"/>

How the parsing works:

Expand All @@ -214,7 +214,7 @@ How the parsing works:
**API
** : [`Model.java`](https://github.com/AY2324S1-CS2103T-F10-2/tp/blob/master/src/main/java/seedu/lovebook/model/Model.java)

<puml src="diagrams/ModelClassDiagram.puml" />
<puml src="diagrams/ModelClassDiagram.puml" width="450" />

The `Model` component,

Expand All @@ -236,7 +236,7 @@ The `Model` component,
**API
** : [`Storage.java`](https://github.com/AY2324S1-CS2103T-F10-2/tp/blob/master/src/main/java/seedu/lovebook/storage/Storage.java)

<puml src="diagrams/StorageClassDiagram.puml" />
<puml src="diagrams/StorageClassDiagram.puml" width="550"/>

The `Storage` component,

Expand Down

0 comments on commit d48633e

Please sign in to comment.