Skip to content

Commit

Permalink
Made changes requested by Andy Black
Browse files Browse the repository at this point in the history
  • Loading branch information
jtmaxwell3 authored and jasonleenaylor committed May 31, 2024
1 parent 60c3fa6 commit 722b7f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Src/LexText/ParserCore/HCLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2345,7 +2345,7 @@ private void LoadCharacterDefinitionTable(IPhPhonemeSet phonemeSet)
}
}

m_null = m_table.AddBoundary(new[] {"^0", "*0", "&0", "Ø", "∅"});
m_null = m_table.AddBoundary(new[] {"^0", "*0", "&0", "∅"});
m_table.AddBoundary(".");
m_morphBdry = m_table["+"];

Expand Down
4 changes: 2 additions & 2 deletions Src/LexText/ParserCore/ParserCoreTests/HCLoaderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ namespace SIL.FieldWorks.WordWorks.Parser
[TestFixture]
public class HCLoaderTests : MemoryOnlyBackendProviderRestoredForEachTestTestBase
{
private const string PrefixNull = "([StrRep:{\"&0\", \"*0\", \"^0\", \"\", \"Ø\"}, Type:boundary][StrRep:\"+\", Type:boundary])*";
private const string SuffixNull = "([StrRep:\"+\", Type:boundary][StrRep:{\"&0\", \"*0\", \"^0\", \"\", \"Ø\"}, Type:boundary])*";
private const string PrefixNull = "([StrRep:{\"&0\", \"*0\", \"^0\", \"\"}, Type:boundary][StrRep:\"+\", Type:boundary])*";
private const string SuffixNull = "([StrRep:\"+\", Type:boundary][StrRep:{\"&0\", \"*0\", \"^0\", \"\"}, Type:boundary])*";
private const string AnyPlus = PrefixNull + "ANY+" + SuffixNull;
private const string AnyStar = PrefixNull + "ANY*" + SuffixNull;
private const string VowelFS = "[cons:-, Type:segment, voc:+]";
Expand Down

0 comments on commit 722b7f2

Please sign in to comment.