Skip to content

Commit

Permalink
Update module name
Browse files Browse the repository at this point in the history
Looks like I forgot to do this, when I renamed `Edge` to `HalfEdge` a
while ago.
  • Loading branch information
hannobraun committed Feb 12, 2024
1 parent fce60c9 commit 4ec732d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/fj-core/src/operations/update/mod.rs
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
//! Operations to update objects
mod cycle;
mod edge;
mod face;
mod half_edge;
mod region;
mod shell;
mod sketch;
mod solid;

pub use self::{
cycle::UpdateCycle, edge::UpdateHalfEdge, face::UpdateFace,
cycle::UpdateCycle, face::UpdateFace, half_edge::UpdateHalfEdge,
region::UpdateRegion, shell::UpdateShell, sketch::UpdateSketch,
solid::UpdateSolid,
};

0 comments on commit 4ec732d

Please sign in to comment.