Skip to content

Commit 3eaebc9

Browse files
seongmoMaledong
authored andcommitted
Update nodejs.org/locale/ko/about/index.md (#2152)
1. Fix broken 'Blocking vs Non-Blocking' link. 2. Update 'event loop' link to use korean translation.
1 parent fdeaa65 commit 3eaebc9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

locale/ko/about/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ browser JavaScript — the event loop is hidden from the user.
7171
-->
7272
Node는 Ruby의 [Event Machine][]이나 Python의 [Twisted][]같은 시스템과 설계상 유사하고
7373
영향을 받았습니다. Node는 좀 더 발전된 이벤트 모델을 선택해서 라이브러리가 아닌 런타임 생성자로
74-
[event loop][]를 제공합니다. 다른 시스템에서는 이벤트 루프를 시작하는 블럭킹 호출이 항상 존재합니다.
74+
[이벤트 루프][]를 제공합니다. 다른 시스템에서는 이벤트 루프를 시작하는 블럭킹 호출이 항상 존재합니다.
7575

7676
보통은 스크립트의 시작 부분에서 콜백을 통해서 동작을 정의하고 마지막에서 `EventMachine::run()`같은
7777
블로킹 호출로 서버를 시작합니다. Node에서는 이와 같은 이벤트 루프를 시작하는 호출이 없습니다. Node는
@@ -107,9 +107,9 @@ Node는 스레드를 사용하지 않도록 설계되지만 멀티 코어 환경
107107
[Twisted]: http://twistedmatrix.com/
108108
-->
109109

110-
[Blocking vs Non-Blocking]: https://nodejs.org/en/docs/guides/blocking-vs-non-blocking/
110+
[블로킹 대 논-블로킹]: https://nodejs.org/ko/docs/guides/blocking-vs-non-blocking/
111111
[`child_process.fork()`]: https://nodejs.org/api/child_process.html#child_process_child_process_fork_modulepath_args_options
112112
[`cluster`]: https://nodejs.org/api/cluster.html
113-
[event loop]: https://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/
113+
[이벤트 루프]: https://nodejs.org/ko/docs/guides/event-loop-timers-and-nexttick/
114114
[Event Machine]: https://github.com/eventmachine/eventmachine
115115
[Twisted]: http://twistedmatrix.com/

0 commit comments

Comments
 (0)