chore: Translate stray Chinese comment to English (#30024)

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
This commit is contained in:
非法操作
2025-12-23 14:05:21 +08:00
committed by GitHub
parent d005689d0a
commit 9701a2994b
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 the substring starting with 'return'.
const codeAfterReturn = codeWithoutComments.slice(returnIndex)
let bracketCount = 0