We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf8c991 commit 0de17b0Copy full SHA for 0de17b0
basic/11-render-array.md
@@ -288,7 +288,7 @@ array.map(item => <div>{item}</div>);
288
array.map(item => <div key={item.id}>{item.text}</div>);
289
```
290
291
-배열이 업데이트 될 떄 `key` 가 없을 때 처럼 비효율적으로 업데이트 하는 것이 아니라, 수정되지 않는 기존의 값은 그대로 두고 원하는 곳에 내용을 삽입하거나 삭제합니다.
+배열이 업데이트 될 때 `key` 가 없을 때 처럼 비효율적으로 업데이트 하는 것이 아니라, 수정되지 않는 기존의 값은 그대로 두고 원하는 곳에 내용을 삽입하거나 삭제합니다.
292
293

294
0 commit comments