Skip to content

Commit 859469c

Browse files
committed
Fix typo in corrections docs
1 parent 85228e3 commit 859469c

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed

_old_corrections/개정판-1쇄.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ async function runTasks() {
294294
+ containers/TodosContainer.js
295295
```
296296

297+
297298
## 18.3.1.5 (pg.500)
298299

299300
페이지 상단 `connect` 함수의 `loadingPost``loadingUsers` 부분에 오탈자가 있습니다.
@@ -315,6 +316,20 @@ export default connect(
315316
)(SampleContainer);
316317
```
317318

319+
## 18.3.2.1 오탈자 (pg. 503)
320+
321+
주석 결과가 잘못 표기되어있음
322+
323+
```diff
324+
generator.next();
325+
// 제너레이터 함수
326+
// { value: 2, done: false }
327+
generator.next();
328+
-// 제너레이터 함수
329+
+// function*
330+
// { value: 3, done: false }
331+
```
332+
318333
## 20.3.2 (pg. 549-550)
319334

320335
css-loader가 업데이트 됨에 따라 기존 `exportOnlyLocals` 라는 옵션이 `onlyLocals`로 변경되었습니다.

_old_corrections/개정판-2쇄.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,21 @@ async function runTasks() {
245245
})
246246
```
247247

248+
## 18.3.2.1 오탈자 (pg. 503)
249+
250+
주석 결과가 잘못 표기되어있음
251+
252+
```diff
253+
generator.next();
254+
// 제너레이터 함수
255+
// { value: 2, done: false }
256+
generator.next();
257+
-// 제너레이터 함수
258+
+// function*
259+
// { value: 3, done: false }
260+
```
261+
262+
248263
## 20.3.2 (pg. 549-550) 업데이트
249264

250265
css-loader가 업데이트 됨에 따라 기존 `exportOnlyLocals` 라는 옵션이 `onlyLocals`로 변경되었습니다.

corrections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ generator.next();
123123
generator.next();
124124
-// 제너레이터 함수
125125
+// function*
126-
// { value: 2, done: false }
126+
// { value: 3, done: false }
127127
```
128128

129129
## 20.3.2 (pg.546 ~ 552) 업데이트

0 commit comments

Comments
 (0)