Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
rampaa committed Feb 9, 2025
1 parent 20dccc2 commit cd8827f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion JL.Core/Dicts/CustomWordDict/CustomWordLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static class CustomWordLoader
"adj-na"
];

internal static readonly string[] s_noun =
private static readonly string[] s_noun =
[
"n"
];
Expand Down
2 changes: 1 addition & 1 deletion JL.Core/Utilities/JapaneseUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ public static partial class JapaneseUtils
// Katakana (30A0–30FF)
// Katakana Phonetic Extensions (31F0–31FF): The range is mainly for Ainu, but some characters like ㇲ and ト are occasionally used in Japanese, so it's included in the regex.
[GeneratedRegex(@"[\u3040-\u31FF]", RegexOptions.CultureInvariant)]
public static partial Regex KanaRegex { get; }

private static partial Regex KanaRegex { get; }

private static readonly FrozenDictionary<char, string> s_katakanaToHiraganaDict = new Dictionary<char, string>(87)
{
Expand Down

0 comments on commit cd8827f

Please sign in to comment.