Rollup merge of #37286 - srinivasreddy:graph, r=nrc

run rustfmt on graph folder
This commit is contained in:
Guillaume Gomez 2016-10-22 01:21:59 +02:00 committed by GitHub
commit 59faa20156
1 changed files with 2 additions and 2 deletions

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,
}
}