Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
jtmaxwell3 authored and ddaspit committed Oct 22, 2024
1 parent dbd3a52 commit 28f9f49
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,11 @@ public Word ApplyRhs(PatternRule<Word, ShapeNode> rule, Match<Word, ShapeNode> m
{
// an existing morph has been completely subsumed by the new morph
// mark the subsumed morph so we don't lose track of it
Annotation<ShapeNode> outputMorph = output.MarkSubsumedMorph(outputNewMorph, allomorph, morphID);
Annotation<ShapeNode> outputMorph = output.MarkSubsumedMorph(
outputNewMorph,
allomorph,
morphID
);
MarkSubsumedMorphs(match.Input, output, inputMorph, outputMorph);
}
}
Expand Down

0 comments on commit 28f9f49

Please sign in to comment.