cargo fmt

html_output
Wilfred Hughes 2022-02-19 14:51:15 +07:00
parent 63673c799b
commit 0973f65899
1 changed files with 4 additions and 1 deletions

@ -329,7 +329,10 @@ pub fn neighbours<'a>(v: &Vertex<'a>, buf: &mut [Option<(Edge, Vertex<'a>)>]) {
}
}
}
assert!(i > 0, "Must always find some next steps if node is not the end");
assert!(
i > 0,
"Must always find some next steps if node is not the end"
);
}
pub fn mark_route(route: &[(Edge, Vertex)]) {