Skip to content

Commit

Permalink
Ch. 17: fix task names in Figure 17-2
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskrycho committed Oct 7, 2024
1 parent 06a3a71 commit 8f63245
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions dot/trpl17-02.dot
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
digraph {
dpi = 300.0;

rankdir = "LR";
splines = false;
cluster = true;

node [shape = diamond;];

// The graphs end up with the correct order, i.e. Task 1 *above* Task 2, when
// this is first.
subgraph cluster_ColleagueB {
label = "Task 2";
label = "Task B";
B1 -> B2 -> B3;

B0 [style = invis;];
B3 -> B0 [style = invis;]
B3 -> B0 [style = invis;];
}

subgraph cluster_ColleagueA {
newrank = true;
label = "Task 1";
label = "Task A";
A1 -> A2 -> A3 -> A4;
}
}
}
6 changes: 3 additions & 3 deletions src/img/trpl17-02.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8f63245

Please sign in to comment.