Skip to content

Commit

Permalink
Merge pull request #204 from kwuunnn/master
Browse files Browse the repository at this point in the history
Fix
  • Loading branch information
kwuunnn authored Apr 15, 2024
2 parents a43f565 + f5498e7 commit 842bb0d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions docs/DeveloperGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ The following legend describes the symbols used in this section:

#### Use case 1: Delete a student

[[ main-success-scenario-mss:MSS ]]:
MSS:

1. TA requests to list students
2. ClassMonitor shows a list of students
Expand All @@ -555,7 +555,7 @@ Extensions:

#### Use case 2: Add a student

[[ main-success-scenario-mss:MSS ]]:
MSS:

1. TA requests to add a student in the list
2. TA includes the relevant student's info
Expand All @@ -572,7 +572,7 @@ Extensions:

#### Use case 3: Add a tag to a student

[[ main-success-scenario-mss:MSS ]]:
MSS:

1. TA requests to list students
2. ClassMonitor shows a list of students
Expand All @@ -595,7 +595,7 @@ Extensions:

#### Use case 4: Find a student by name

[[ main-success-scenario-mss:MSS ]]:
MSS:

1. TA requests to list students
2. ClassMonitor shows a list of students
Expand All @@ -618,7 +618,7 @@ Extensions:

#### Use case 5: Add a star/bolt to a student

[[ main-success-scenario-mss:MSS ]]:
MSS:

1. TA requests to list students
2. ClassMonitor shows a list of students
Expand All @@ -635,7 +635,7 @@ Extensions:

#### Use case 6: Find students by a specific field

[[ main-success-scenario-mss:MSS ]]:
MSS:

1. TA requests to list students
2. ClassMonitor shows a list of students
Expand All @@ -658,7 +658,7 @@ Extensions:

#### Use case 7: Sort list of students by a specific field

[[ main-success-scenario-mss:MSS ]]:
MSS:

1. TA requests to list students
2. ClassMonitor shows a list of students
Expand Down
12 changes: 6 additions & 6 deletions docs/diagrams/StarCommentModelClassDiagram.puml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ hide empty members
skinparam ClassAttributeFontColor #FFFFFF

package Model as ModelPackage <<Rectangle>>{
Class Person {
Class Student {
name
phone
major
Expand All @@ -28,14 +28,14 @@ package Model as ModelPackage <<Rectangle>>{
' Create an invisible class in the diagram to draw the arrow representing
' the external user of the model
class HiddenOutside #FFFFFF
HiddenOutside ..> Person
HiddenOutside ..> Student

Person *-right-> Stars
Student *-right-> Stars
Stars *-right> "*" Comment


'Person -[hidden]up--> I
'UniquePersonList -[hidden]right-> I
'Student -[hidden]up--> I
'UniqueStudentList -[hidden]right-> I

'ModelManager --> "~* filtered" Person
'ModelManager --> "~* filtered" Student
@enduml
Binary file modified docs/images/StarCommentModelClassDiagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 842bb0d

Please sign in to comment.