Skip to content

Commit

Permalink
Use strict in graphviz generator
Browse files Browse the repository at this point in the history
  • Loading branch information
zyedidia committed Feb 22, 2023
1 parent 91b81a0 commit 0ce7372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules/tool.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ type GraphTool struct {
}

func (t *GraphTool) dot(g *Graph, w io.Writer) {
fmt.Fprintln(w, "digraph take {")
fmt.Fprintln(w, "strict digraph take {")
fmt.Fprintln(w, "rankdir=\"LR\";")
t.dotNode(g.base, w, make(map[*node]bool))
fmt.Fprintln(w, "}")
Expand Down

0 comments on commit 0ce7372

Please sign in to comment.