File tree Expand file tree Collapse file tree 3 files changed +31
-1
lines changed Expand file tree Collapse file tree 3 files changed +31
-1
lines changed Original file line number Diff line number Diff line change @@ -294,6 +294,7 @@ async function runTasks() {
294
294
+ containers/TodosContainer.js
295
295
```
296
296
297
+
297
298
## 18.3.1.5 (pg.500)
298
299
299
300
페이지 상단 ` connect ` 함수의 ` loadingPost ` 와 ` loadingUsers ` 부분에 오탈자가 있습니다.
@@ -315,6 +316,20 @@ export default connect(
315
316
)(SampleContainer);
316
317
```
317
318
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
+
318
333
## 20.3.2 (pg. 549-550)
319
334
320
335
css-loader가 업데이트 됨에 따라 기존 ` exportOnlyLocals ` 라는 옵션이 ` onlyLocals ` 로 변경되었습니다.
Original file line number Diff line number Diff line change @@ -245,6 +245,21 @@ async function runTasks() {
245
245
})
246
246
```
247
247
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
+
248
263
## 20.3.2 (pg. 549-550) 업데이트
249
264
250
265
css-loader가 업데이트 됨에 따라 기존 ` exportOnlyLocals ` 라는 옵션이 ` onlyLocals ` 로 변경되었습니다.
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ generator.next();
123
123
generator.next();
124
124
- // 제너레이터 함수
125
125
+ // function*
126
- // { value: 2 , done: false }
126
+ // { value: 3 , done: false }
127
127
```
128
128
129
129
## 20.3.2 (pg.546 ~ 552) 업데이트
You can’t perform that action at this time.
0 commit comments