Make module name more specific

I need to add another module there that could basically have the same
name.
This commit is contained in:
Hanno Braun 2024-05-22 19:43:22 +02:00
parent 2fd43f4876
commit ce6b4027c5
2 changed files with 2 additions and 2 deletions

View File

@ -6,12 +6,12 @@ mod curve_geometry_mismatch;
mod face_boundary;
mod face_winding;
mod half_edge_connection;
mod half_edge_siblings;
mod half_edge_has_no_sibling;
pub use self::{
curve_geometry_mismatch::CurveGeometryMismatch,
face_boundary::FaceHasNoBoundary,
face_winding::InteriorCycleHasInvalidWinding,
half_edge_connection::AdjacentHalfEdgesNotConnected,
half_edge_siblings::HalfEdgeHasNoSibling,
half_edge_has_no_sibling::HalfEdgeHasNoSibling,
};