Skip to content

Commit 59faa20

Browse files
Rollup merge of #37286 - srinivasreddy:graph, r=nrc
run rustfmt on graph folder
2 parents 38337c2 + 20bda8d commit 59faa20

File tree

1 file changed

+2
-2
lines changed
  • src/librustc_data_structures/graph

1 file changed

+2
-2
lines changed

src/librustc_data_structures/graph/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ impl<'g, N: Debug, E: Debug> DepthFirstTraversal<'g, N, E> {
380380
graph: graph,
381381
stack: vec![],
382382
visited: visited,
383-
direction: direction
383+
direction: direction,
384384
}
385385
}
386386

@@ -394,7 +394,7 @@ impl<'g, N: Debug, E: Debug> DepthFirstTraversal<'g, N, E> {
394394
graph: graph,
395395
stack: vec![start_node],
396396
visited: visited,
397-
direction: direction
397+
direction: direction,
398398
}
399399
}
400400

0 commit comments

Comments
 (0)