run rustfmt on graph folder

This commit is contained in:
Srinivas Reddy Thatiparthy 2016-10-20 00:37:24 +05:30
parent a41505f4f4
commit 20bda8d5f4
No known key found for this signature in database
GPG Key ID: 091C58F4BFC36571

View File

@ -380,7 +380,7 @@ impl<'g, N: Debug, E: Debug> DepthFirstTraversal<'g, N, E> {
graph: graph,
stack: vec![],
visited: visited,
direction: direction
direction: direction,
}
}
@ -394,7 +394,7 @@ impl<'g, N: Debug, E: Debug> DepthFirstTraversal<'g, N, E> {
graph: graph,
stack: vec![start_node],
visited: visited,
direction: direction
direction: direction,
}
}