Reformat use declarations.
The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
use crate::graph::{DirectedGraph, NumEdges, Predecessors, Successors};
|
||||
use rustc_index::{Idx, IndexVec};
|
||||
|
||||
use crate::graph::{DirectedGraph, NumEdges, Predecessors, Successors};
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests;
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
use crate::graph;
|
||||
|
||||
use super::*;
|
||||
use crate::graph;
|
||||
|
||||
fn create_graph() -> VecGraph<usize> {
|
||||
// Create a simple graph
|
||||
|
||||
Reference in New Issue
Block a user