Skip to content

Commit

Permalink
Update validation error message
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Aug 9, 2024
1 parent e369e3c commit 311a54c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,9 @@ impl fmt::Display for CoincidentHalfEdgesAreNotSiblings {
write!(
f,
"Half-edge 1: {:#?}\n\
Half-edge 2: {:#?}",
self.half_edge_a, self.half_edge_b,
Half-edge 2: {:#?}\n\
Distances: {:#?}",
self.half_edge_a, self.half_edge_b, self.distances
)?;

Ok(())
Expand Down

0 comments on commit 311a54c

Please sign in to comment.