Open mrseanryan opened 1 year ago
Generate a summary of this DOT graph suitable for use in a git commit message:
digraph G {
User -> MySection_1 [label="renamed from My Cars to My Favourite Cars"]
User -> MySection_0 [label="Removed"]
User -> MySection_3 [label="Added"]
}
OUTPUT:
"Renamed 'My Cars' to 'My Favorite Cars', removed 'My Section 0', and added 'My Section 3'"
A - Generate a summary of the actions performed by User, as described in this DOT graph:
digraph G { User -> MySection_1 [label="renamed from My Cars to My Favourite Cars"] User -> MySection_0 [label="Removed"] User -> MySection_3 [label="Added"] }
OUTPUT:
The user renamed 'My Cars' to 'My Favorite Cars', removed 'My Section 0', and added 'My Section 3'.
The user has made several changes to their sections. They renamed "My Cars" to "My Favourite Cars". They also removed "My Section_0" and added "My Section_3".
B - Generate counts of operations performed by User, as described in this DOT graph:
digraph G { User -> MySection_1 [label="renamed from My Cars to My Favourite Cars"] User -> MySection_0 [label="Removed"] User -> MySection_3 [label="Added"] }
OUTPUT:
Renamed one section (count = 1)
Removed one section (count = 1)
Added one section (count = 1)
A + B could both be executed and their results combined.
DOT:
https://dreampuf.github.io/GraphvizOnline