Skip to content

Commit bfcd81e

Browse files
Fix example comments (#4418)
1 parent 40aa31f commit bfcd81e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

locale/ko/docs/guides/blocking-vs-non-blocking.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ moreWork(); // will run before console.log
141141
const fs = require('fs');
142142
const data = fs.readFileSync('/file.md'); // 파일을 읽을 때까지 여기서 블로킹됩니다.
143143
console.log(data);
144-
// moreWork(); console.log 이후 실행될 것입니다.
144+
moreWork(); // console.log 이후 실행될 것입니다.
145145
```
146146

147147
이를 비동기로 작성한 예제를 보겠습니다.
@@ -152,7 +152,7 @@ fs.readFile('/file.md', (err, data) => {
152152
if (err) throw err;
153153
console.log(data);
154154
});
155-
// moreWork(); console.log 이전에 실행될 것입니다.
155+
moreWork(); // console.log 이전에 실행될 것입니다.
156156
```
157157

158158
<!--

0 commit comments

Comments
 (0)