Skip to content

Commit

Permalink
fix format again
Browse files Browse the repository at this point in the history
  • Loading branch information
easbar committed May 4, 2024
1 parent 8ccb62b commit 0e3418b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fast_graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub struct FastGraph {
num_nodes: usize,
pub(crate) ranks: Vec<usize>,
pub(crate) edges_fwd: Vec<FastGraphEdge>,
pub(crate) first_edge_ids_fwd: Vec< EdgeId >,
pub(crate) first_edge_ids_fwd: Vec<EdgeId>,

pub(crate) edges_bwd: Vec<FastGraphEdge>,
pub(crate) first_edge_ids_bwd: Vec<EdgeId>,
Expand Down

0 comments on commit 0e3418b

Please sign in to comment.