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 typos and increase size of diagram #373

Merged
Merged
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
9 changes: 5 additions & 4 deletions docs/diagrams/CommitActivityDiagram.puml
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
@startuml
scale 1.5
skin rose
skinparam ActivityFontSize 15
skinparam ArrowFontSize 12
start
:User inputs and
executes command;
:Parse command;

'Since the beta syntax does not support placing the condition outside the
'diamond we place it as the true branch instead.
: Parse command;
if () then ([command will modify CampusConnect])
:Purge undone states;
:Save current CampusConnect;
:Excutes Command;
:Execute Command;
if () then ([command execution fails])
: Recover to old version of
:Recover to old version of
CampusConnect;
else ([else])
endif
else ([else])
:Excutes Command;
:Execute Command;
endif
stop
@enduml