mirror of
https://github.com/rust-lang/book.git
synced 2026-05-16 16:10:53 -04:00
- Swap the ordering to match the order in the text (concurrent is first, at least for now). - Make them go left-to-right instead of top-to-bottom for compactness in the text. - Fix rendering issues resulting from the VS Code extension doing things that normal `dot` does not, for who knows what reasons.
20 lines
325 B
Plaintext
20 lines
325 B
Plaintext
digraph {
|
|
dpi = 300.0;
|
|
|
|
rankdir = "LR";
|
|
splines = false;
|
|
cluster = true;
|
|
|
|
node [shape = diamond;];
|
|
|
|
subgraph cluster_ColleagueA {
|
|
newrank = true;
|
|
label = "Task 1";
|
|
A1 -> A2 -> A3 -> A4;
|
|
}
|
|
|
|
subgraph cluster_ColleagueB {
|
|
label = "Task 2";
|
|
B1 -> B2 -> B3;
|
|
}
|
|
} |