Skip to content

Commit d00a964

Browse files
authored
Update print statements for English output
1 parent 8ca9e53 commit d00a964

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/making_formula.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ def process_formula_file(file_path="formula.txt"):
1919
transformed_string = f"[![equation](https://latex.codecogs.com/png.latex?{encoded_formula})](#)" # 최종 변환
2020

2121
# 원본과 최종 변환 결과 출력
22-
print(f"원본: {original}")
23-
print(f"변환: {transformed_string}")
22+
print(f"Original: {original}")
23+
print(f"Transformed: {transformed_string}")
2424
print("-" * 80) # 구분선
2525
except FileNotFoundError:
2626
print(f"파일 '{file_path}'을(를) 찾을 수 없습니다.")

0 commit comments

Comments
 (0)