diff --git a/docs/destroying.md b/docs/destroying.md index 27cb17106..cf65fc6aa 100644 --- a/docs/destroying.md +++ b/docs/destroying.md @@ -209,6 +209,7 @@ digraph replacement { } a -> a_d [dir=back]; + a -> b_d; b -> a_d [dir=back]; b -> b_d; } @@ -216,7 +217,8 @@ digraph replacement { Order of operations: -1. `B` is destroyed AND `A` is created +1. `B` is destroyed +2. `A` is created 1. `B` is created 1. `A` is destroyed @@ -314,6 +316,7 @@ digraph replacement { } a -> a_d; + a -> b_d [style=dotted]; b -> a_d [style=dotted]; b -> b_d [dir=back]; } @@ -340,6 +343,7 @@ digraph replacement { } a -> a_d [dir=back]; + a -> b_d [dir=back, style=dotted]; b -> a_d [dir=back, style=dotted]; b -> b_d [dir=back]; } diff --git a/docs/images/replace_all_cbd.png b/docs/images/replace_all_cbd.png index fa56581a2..da72fe483 100644 Binary files a/docs/images/replace_all_cbd.png and b/docs/images/replace_all_cbd.png differ diff --git a/docs/images/replace_all_cbd_dep.png b/docs/images/replace_all_cbd_dep.png index 43c3a64a8..98bdbde68 100644 Binary files a/docs/images/replace_all_cbd_dep.png and b/docs/images/replace_all_cbd_dep.png differ diff --git a/docs/images/replace_cbd_incorrect.png b/docs/images/replace_cbd_incorrect.png index 6a4f34ee5..72591d036 100644 Binary files a/docs/images/replace_cbd_incorrect.png and b/docs/images/replace_cbd_incorrect.png differ