Skip to content

Commit

Permalink
Remove unncessary pub
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Jun 3, 2022
1 parent 57bccc0 commit b8b4946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/fj-kernel/src/topology/edge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ impl<const D: usize> fmt::Display for Edge<D> {

/// The vertices that bound an edge
#[derive(Clone, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub struct VerticesOfEdge(pub Option<[LocalForm<Point<1>, Vertex>; 2]>);
pub struct VerticesOfEdge(Option<[LocalForm<Point<1>, Vertex>; 2]>);

impl VerticesOfEdge {
/// Construct an instance of `VerticesOfEdge` from zero or two vertices
Expand Down

0 comments on commit b8b4946

Please sign in to comment.