Skip to content

[Feature]: Add support for bilingual JSDoc comments (Korean & English) #207

@wnghdcjfe

Description

@wnghdcjfe

Current Situation/Problem

Currently, the codebase contains JSDoc comments written in a single language (mostly Korean).
To improve accessibility and collaboration for both Korean-speaking and English-speaking developers, we should update the documentation to include bilingual comments for all functions, classes, and significant code sections.

Proposed Feature

/**
 * @function add
 * @description_en Adds two numbers.
 * @description_kr 두 숫자를 더합니다.
 * @param {number} a - @param_en First number / @param_kr 첫 번째 숫자
 * @param {number} b - @param_en Second number / @param_kr 두 번째 숫자
 * @returns {number} @returns_en Sum / @returns_kr 합계
 */
function add(a, b) { return a + b }

Alternatives (Optional)

No response

Additional Information

No response

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions