Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jtmaxwell3 authored and ddaspit committed Sep 30, 2024
1 parent 9e5ea60 commit 2f824de
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/SIL.Machine.Morphology.HermitCrab/RootAllomorph.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ public RootAllomorph(Segments segments)
_segments = segments;
foreach (ShapeNode node in _segments.Shape.GetNodes(_segments.Shape.Range))
{
if (node.IsIterative() || (node.Annotation.Optional && node.Annotation.Type() != HCFeatureSystem.Boundary))
if (
node.IsIterative()
|| (node.Annotation.Optional && node.Annotation.Type() != HCFeatureSystem.Boundary)
)
{
IsPattern = true;
}
Expand Down

0 comments on commit 2f824de

Please sign in to comment.