diff --git a/src/SIL.Machine.Morphology.HermitCrab/Morpher.cs b/src/SIL.Machine.Morphology.HermitCrab/Morpher.cs index 587f751a..5b9d9ca1 100644 --- a/src/SIL.Machine.Morphology.HermitCrab/Morpher.cs +++ b/src/SIL.Machine.Morphology.HermitCrab/Morpher.cs @@ -156,7 +156,6 @@ public IEnumerable ParseWord(string word, out object trace, bool guessRoot return matches; } return syntheses; - } /// diff --git a/src/SIL.Machine/Annotations/Annotation.cs b/src/SIL.Machine/Annotations/Annotation.cs index 8b7758f9..e75ea2bb 100644 --- a/src/SIL.Machine/Annotations/Annotation.cs +++ b/src/SIL.Machine/Annotations/Annotation.cs @@ -224,7 +224,8 @@ public bool ValueEquals(Annotation other) return _fs.ValueEquals(other._fs) && _optional == other._optional - && _iterative == other._iterative && Range == other.Range; + && _iterative == other._iterative + && Range == other.Range; } public int GetFrozenHashCode() diff --git a/tests/SIL.Machine.Morphology.HermitCrab.Tests/MorpherTests.cs b/tests/SIL.Machine.Morphology.HermitCrab.Tests/MorpherTests.cs index 7dbf8da2..0303063f 100644 --- a/tests/SIL.Machine.Morphology.HermitCrab.Tests/MorpherTests.cs +++ b/tests/SIL.Machine.Morphology.HermitCrab.Tests/MorpherTests.cs @@ -89,7 +89,9 @@ public void AnalyzeWord_CanGuess_ReturnsCorrectAnalysis() ShapeNode node = new ShapeNode(new FeatureStruct()); node.Annotation.Optional = true; node.Annotation.Iterative = true; - var shape = new Shape(begin => new ShapeNode(begin ? HCFeatureSystem.LeftSideAnchor : HCFeatureSystem.RightSideAnchor)); + var shape = new Shape( + begin => new ShapeNode(begin ? HCFeatureSystem.LeftSideAnchor : HCFeatureSystem.RightSideAnchor + )); shape.AddRange(new List { node }); var lexicalPattern = new RootAllomorph(new Segments(Table1, "", shape));