chore: replace Chinese/Japanese comments with English translations

This commit is contained in:
lyzno1
2025-10-11 14:17:55 +08:00
parent 00dab7ca5f
commit d986659add
4 changed files with 5 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ export const extractReturnType = (code: string, language: CodeLanguage): OutputV
if (returnIndex === -1)
return {}
// return から始まる部分文字列を取得
// Extract substring starting from return statement
const codeAfterReturn = codeWithoutComments.slice(returnIndex)
let bracketCount = 0