Skip to content

Commit bc074cd

Browse files
authored
Merge branch 'master' into dg-addt/delt
2 parents 62c9718 + 6b8ddf7 commit bc074cd

File tree

6 files changed

+306
-155
lines changed

6 files changed

+306
-155
lines changed

docs/DeveloperGuide.md

Lines changed: 281 additions & 152 deletions
Large diffs are not rendered by default.

docs/UserGuide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ ConnectUS uses prefixes to distinguish between the different types of informatio
782782
- [5.9 Tags](#59-tags)
783783
- [5.9.1 Module Tags: `mod/`](#591-module-tags-mod)
784784
- [5.9.2 CCA Tags: `cca/`](#592-cca-tags-cca)
785-
- [5.9.3 Major Tags: `maj`](#593-major-tags-maj)
785+
- [5.9.3 Major Tags: `maj/`](#593-major-tags-maj)
786786
- [5.9.4 Remark Tags: `r/`](#594-remark-tags-r)
787787

788788
<div style="page-break-after: always"></div>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@startuml
22
!pragma useVerticalIf on
33
start
4-
:User enters new command;
4+
:User enters add command;
55
if () then ([else])
66
:Error: Invalid command format;
77
stop
@@ -10,7 +10,7 @@ if () then ([else])
1010
stop
1111
else ([Person does not exist in Contact List])
1212
endif
13-
:new command successfully executes.;
13+
:add command successfully executes.;
1414
stop
1515

1616
@enduml
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
@startuml
2+
!pragma useVerticalIf on
3+
4+
start
5+
:User enters upcoming-b command;
6+
while (Still have Persons in full list?)
7+
:Check Birthday of Person;
8+
if () then ([else])
9+
:Don't add Person to filtered list;
10+
stop
11+
([Birthday is not empty]) elseif () then ([else])
12+
:Don't add Person to filtered list;
13+
stop
14+
else ([Birthday is within the next 60 days])
15+
:Add Person to filtered list;
16+
17+
endif
18+
endwhile
19+
20+
stop
21+
22+
@enduml
-276 Bytes
Loading
20.9 KB
Loading

0 commit comments

Comments
 (0)