Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

issue236: 코드 블럭 내 잘못된 주석 제거 #237

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions pages/tutorials/ts-for-js-programmers.html
Original file line number Diff line number Diff line change
Expand Up @@ -1270,8 +1270,7 @@ <h3 id="&#xC720;&#xB2C8;&#xC5B8;-unions">&#xC720;&#xB2C8;&#xC5B8; (Unions)</h3>

printPoint(color);
</code></pre><p>&#xB9C8;&#xC9C0;&#xB9C9;&#xC73C;&#xB85C;, &#xC815;&#xD655;&#xD558;&#xAC8C; &#xB9C8;&#xBB34;&#xB9AC; &#xC9D3;&#xAE30; &#xC704;&#xD574;, &#xAD6C;&#xC870;&#xC801;&#xC73C;&#xB85C; &#xD074;&#xB798;&#xC2A4;&#xC640; &#xAC1D;&#xCCB4;&#xAC00; &#xD615;&#xD0DC;&#xB97C; &#xB530;&#xB974;&#xB294; &#xBC29;&#xBC95;&#xC5D0;&#xB294; &#xCC28;&#xC774;&#xAC00; &#xC5C6;&#xC2B5;&#xB2C8;&#xB2E4;:</p>
<pre><code>// @errors: 2345
interface Point {
<pre><code>interface Point {
x: number;
y: number;
}
Expand Down
1 change: 0 additions & 1 deletion pages/tutorials/ts-for-js-programmers.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,6 @@ printPoint(color);
마지막으로, 정확하게 마무리 짓기 위해, 구조적으로 클래스와 객체가 형태를 따르는 방법에는 차이가 없습니다:

```
// @errors: 2345
interface Point {
x: number;
y: number;
Expand Down