GitBucket
4.21.2
Toggle navigation
Snippets
Sign in
Files
Branches
1
Releases
Issues
Pull requests
Labels
Priorities
Milestones
Wiki
Forks
1
nigel.stanger
/
templates
forked from
mark.george/templates
Browse code
Initial create
master
1 parent
fc19bce
commit
47003907bf21b5c8ac6b2d5a5de5ca0f90a38a1c
Mark George
authored
on 6 May 2019
Patch
Showing
1 changed file
plantuml/sequence-diagram-tips.md
Ignore Space
Show notes
View
plantuml/sequence-diagram-tips.md
0 → 100644
## Arrow colors You can change the colors of the arrows and messages as followings: a -[#red]> b : <color blue> some message</color> ## Collections There is a "collections" participant type: ``` collections "Things" as things ``` ## Hidden returns There is sometimes some weirdness when returning after a self call when there is no explicit return. You can add a hidden return to fix this using: ``` a -> b++ : do stuff b -> b : do stuff to self b -[hidden]-> a : hidden return to fix weirdness ```
Show line notes below