Edges to grouped nodes not working (curly braces)
mcp292 opened this issue · 2 comments
mcp292 commented
digraph mwe {
works -> {yes, no}
}
magjac commented
Comma is not a valid separator in the DOT language. Remove it or use a semicolon instead.
mcp292 commented
Thanks, not sure how I picked up that habit.