Skip to content

Commit

Permalink
Fix words in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Jul 14, 2023
1 parent c9e7045 commit 9335182
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/fj-core/src/validate/shell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ impl Validate for Shell {
/// [`Shell`] validation failed
#[derive(Clone, Debug, thiserror::Error)]
pub enum ShellValidationError {
/// [`Shell`] contains global_edges not referred to by two half_edges
/// [`Shell`] contains global_edges not referred to by two half-edges
#[error("Shell is not watertight")]
NotWatertight,

/// [`Shell`] contains half_edges that are coincident, but refer to
/// [`Shell`] contains half-edges that are coincident, but refer to
/// different global_edges
#[error(
"`Shell` contains `HalfEdge`s that are coincident but refer to \
Expand All @@ -38,7 +38,7 @@ pub enum ShellValidationError {
)]
CoincidentEdgesNotIdentical(Handle<HalfEdge>, Handle<HalfEdge>),

/// [`Shell`] contains half_edges that are identical, but do not coincide
/// [`Shell`] contains half-edges that are identical, but do not coincide
#[error(
"Shell contains HalfEdges that are identical but do not coincide\n\
Edge 1: {edge_1:#?}\n\
Expand Down

0 comments on commit 9335182

Please sign in to comment.