Skip to content

Commit 8f63245

Browse files
committed
Ch. 17: fix task names in Figure 17-2
1 parent 06a3a71 commit 8f63245

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

dot/trpl17-02.dot

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
digraph {
22
dpi = 300.0;
3-
3+
44
rankdir = "LR";
55
splines = false;
66
cluster = true;
7-
7+
88
node [shape = diamond;];
9-
9+
1010
// The graphs end up with the correct order, i.e. Task 1 *above* Task 2, when
1111
// this is first.
1212
subgraph cluster_ColleagueB {
13-
label = "Task 2";
13+
label = "Task B";
1414
B1 -> B2 -> B3;
15-
15+
1616
B0 [style = invis;];
17-
B3 -> B0 [style = invis;]
17+
B3 -> B0 [style = invis;];
1818
}
19-
19+
2020
subgraph cluster_ColleagueA {
2121
newrank = true;
22-
label = "Task 1";
22+
label = "Task A";
2323
A1 -> A2 -> A3 -> A4;
2424
}
25-
}
25+
}

src/img/trpl17-02.svg

Lines changed: 3 additions & 3 deletions
Loading

0 commit comments

Comments
 (0)