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 2184367 commit ff8b54eCopy full SHA for ff8b54e
src/SIL.Machine/Corpora/ParatextBackupTermsCorpus.cs
@@ -28,7 +28,9 @@ public ParatextBackupTermsCorpus(
28
29
IText text = new MemoryText(
30
textId,
31
- glosses.Select(kvp => new TextRow(textId, kvp.Item1) { Segment = kvp.Item2 })
+ glosses.SelectMany(kvp =>
32
+ kvp.Item2.Select(gloss => new TextRow(textId, kvp.Item1) { Segment = new string[] { gloss } })
33
+ )
34
);
35
AddText(text);
36
}
0 commit comments