We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46a3e2a commit b279bc7Copy full SHA for b279bc7
src/SIL.Machine/PunctuationAnalysis/TextSegment.cs
@@ -10,7 +10,7 @@ public class TextSegment : IEquatable<TextSegment>
10
public string Text
11
{
12
get => _codePointString.ToString();
13
- private set { _codePointString = new CodePointString(value); }
+ private set => _codePointString = new CodePointString(value);
14
}
15
public UsfmMarkerType ImmediatePrecedingMarker { get; private set; }
16
public HashSet<UsfmMarkerType> MarkersInPrecedingContext { get; private set; }
0 commit comments