Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
johnml1135 authored Sep 3, 2024
1 parent 7a819ed commit a9ed995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SIL.Machine/Corpora/UsfmTextBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ protected override IEnumerable<TextRow> GetVersesInDocOrder()
if (!string.IsNullOrEmpty(Project))
sb.Append($" in project '{Project}'");
sb.Append($". Verse: {parser.State.VerseRef}, line: {parser.State.LineNumber}, ");
sb.Append($"column: {parser.State.ColumnNumber}, error: '{ex.Message}'");
sb.Append($"character: {parser.State.ColumnNumber}, error: '{ex.Message}'");
throw new InvalidOperationException(sb.ToString(), ex);
}
return rowCollector.Rows;
Expand Down

0 comments on commit a9ed995

Please sign in to comment.