Skip to content

Commit

Permalink
Rename GlobalVertexBuilder to VertexBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Mar 2, 2023
1 parent ad41605 commit 71e3678
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/fj-kernel/src/builder/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub use self::{
sketch::SketchBuilder,
solid::SolidBuilder,
surface::SurfaceBuilder,
vertex::GlobalVertexBuilder,
vertex::VertexBuilder,
};

/// Pass objects to a builder method
Expand Down
4 changes: 2 additions & 2 deletions crates/fj-kernel/src/builder/vertex.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use crate::partial::PartialVertex;

/// Builder API for [`PartialVertex`]
pub trait GlobalVertexBuilder {
pub trait VertexBuilder {
// No methods are currently defined. This trait serves as a placeholder, to
// make it clear where to add such methods, once necessary.
}

impl GlobalVertexBuilder for PartialVertex {}
impl VertexBuilder for PartialVertex {}

0 comments on commit 71e3678

Please sign in to comment.