Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
rampaa committed Dec 11, 2023
1 parent 80b5483 commit a8094bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions JL.Core/Lookup/LookupUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ private static List<LookupResult> SortLookupResults(IEnumerable<LookupResult> lo

private static (bool tryLongVowelConversion, int succAttempt) GetWordResultsHelper(Dict dict,
Dictionary<string, IntermediaryResult> results,
HashSet<Form>? deconjugationList,
HashSet<Form>? deconjugationResults,
string matchedText,
string textInHiragana,
int succAttempt,
Expand All @@ -363,9 +363,9 @@ private static (bool tryLongVowelConversion, int succAttempt) GetWordResultsHelp
tryLongVowelConversion = false;
}

if (deconjugationList is not null && succAttempt < 3)
if (deconjugationResults is not null && succAttempt < 3)
{
foreach (Form deconjugationResult in deconjugationList)
foreach (Form deconjugationResult in deconjugationResults)
{
if (verbDict.TryGetValue(deconjugationResult.Text, out IList<IDictRecord>? dictResults))
{
Expand Down

0 comments on commit a8094bd

Please sign in to comment.