Skip to content

Commit bd46282

Browse files
committed
Remove non-English comments for consistency
1 parent 1d28bf0 commit bd46282

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

Assets/RubyTextMeshPro/Source/RubyTextMeshProDefinitions.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,16 @@ public static string ReplaceRubyTags(this IRubyText targetRubyText, string str,
4040

4141
if (match.Groups["base"].Success && match.Groups["rubyText"].Success)
4242
{
43-
// 새로운 <ruby>base<rt>value</rt></ruby> 형식
4443
baseText = match.Groups["base"].Value;
4544
rubyText = match.Groups["rubyText"].Value;
4645
}
4746
else if (match.Groups["val"].Success && match.Groups["ruby"].Success)
4847
{
49-
// 기존 <ruby="value">base</ruby> 형식
5048
baseText = match.Groups["val"].Value;
5149
rubyText = match.Groups["ruby"].Value;
5250
}
5351
else
5452
{
55-
// 매칭 실패
5653
continue;
5754
}
5855

0 commit comments

Comments
 (0)