Skip to content

Commit b1d96fd

Browse files
committed
Reformat dot
1 parent 5753c25 commit b1d96fd

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/yog/io/dot.gleam

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,8 +381,14 @@ pub fn to_dot(graph: Graph(String, String), options: DotOptions) -> String {
381381
"arrowtail=" <> arrow_style_to_string(tail),
382382
..edge_attrs
383383
]
384-
Some(head), None -> ["arrowhead=" <> arrow_style_to_string(head), ..edge_attrs]
385-
None, Some(tail) -> ["arrowtail=" <> arrow_style_to_string(tail), ..edge_attrs]
384+
Some(head), None -> [
385+
"arrowhead=" <> arrow_style_to_string(head),
386+
..edge_attrs
387+
]
388+
None, Some(tail) -> [
389+
"arrowtail=" <> arrow_style_to_string(tail),
390+
..edge_attrs
391+
]
386392
None, None -> edge_attrs
387393
}
388394
let base_edge_style =

0 commit comments

Comments
 (0)