diff --git a/crates/fj-kernel/src/operations/mod.rs b/crates/fj-kernel/src/operations/mod.rs index 9e7b5ac43..5cff834e4 100644 --- a/crates/fj-kernel/src/operations/mod.rs +++ b/crates/fj-kernel/src/operations/mod.rs @@ -17,6 +17,7 @@ pub use self::{ insert::{Insert, IsInserted, IsInsertedNo, IsInsertedYes}, join::cycle::JoinCycle, update::{ - UpdateCycle, UpdateFace, UpdateHalfEdge, UpdateShell, UpdateSolid, + cycle::UpdateCycle, edge::UpdateHalfEdge, face::UpdateFace, + shell::UpdateShell, solid::UpdateSolid, }, }; diff --git a/crates/fj-kernel/src/operations/update/mod.rs b/crates/fj-kernel/src/operations/update/mod.rs index 431b97368..85f65f886 100644 --- a/crates/fj-kernel/src/operations/update/mod.rs +++ b/crates/fj-kernel/src/operations/update/mod.rs @@ -1,10 +1,5 @@ -mod cycle; -mod edge; -mod face; -mod shell; -mod solid; - -pub use self::{ - cycle::UpdateCycle, edge::UpdateHalfEdge, face::UpdateFace, - shell::UpdateShell, solid::UpdateSolid, -}; +pub mod cycle; +pub mod edge; +pub mod face; +pub mod shell; +pub mod solid;