From 136a3ba9005983ad51b2d258beb087ea16201a2b Mon Sep 17 00:00:00 2001 From: Nathaniel Paulus Date: Mon, 5 Aug 2024 22:55:41 -0400 Subject: [PATCH] Fix quotation mark in USFM parsing error message --- src/SIL.Machine/Corpora/UsfmTextBase.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SIL.Machine/Corpora/UsfmTextBase.cs b/src/SIL.Machine/Corpora/UsfmTextBase.cs index b148f391..ee3d84f8 100644 --- a/src/SIL.Machine/Corpora/UsfmTextBase.cs +++ b/src/SIL.Machine/Corpora/UsfmTextBase.cs @@ -46,7 +46,7 @@ protected override IEnumerable GetVersesInDocOrder() catch (Exception ex) { var sb = new StringBuilder(); - sb.Append($"An error occurred while tokenizing the text '{Id}`"); + sb.Append($"An error occurred while tokenizing the text '{Id}'"); if (!string.IsNullOrEmpty(Project)) sb.Append($" in project '{Project}'"); sb.Append($". Error: '{ex.Message}'"); @@ -67,7 +67,7 @@ protected override IEnumerable GetVersesInDocOrder() catch (Exception ex) { var sb = new StringBuilder(); - sb.Append($"An error occurred while parsing the text '{Id}`"); + sb.Append($"An error occurred while parsing the text '{Id}'"); if (!string.IsNullOrEmpty(Project)) sb.Append($" in project '{Project}'"); sb.Append($". Verse: {parser.State.VerseRef}, line: {parser.State.LineNumber}, ");