Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jtmaxwell3 committed Sep 16, 2024
1 parent cd10e0f commit 16f0a64
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ private bool GetShapeNodes(string str, out IEnumerable<ShapeNode> nodes, out int
break;
}
}
if (match) continue;
if (match)
continue;

// Check for pattern language.
// NB: This only happens when the characters don't match.
Expand Down
3 changes: 2 additions & 1 deletion src/SIL.Machine.Morphology.HermitCrab/RootAllomorph.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ public Segments Segments
/// <summary>
/// Does this represent a lexical pattern (e.g. [Seg]*)?
/// </summary>
public bool IsPattern {
public bool IsPattern
{
get
{
foreach (var node in _segments.Shape.GetNodes(_segments.Shape.Range))
Expand Down

0 comments on commit 16f0a64

Please sign in to comment.