diff --git a/code/examples/item-edit-modal.md b/code/examples/item-edit-modal.md index 6b2fd254..9f1995b1 100644 --- a/code/examples/item-edit-modal.md +++ b/code/examples/item-edit-modal.md @@ -75,7 +75,7 @@ Props Drilling이 발생하면, 프롭을 불필요하게 참조하는 컴포넌 그런데 프롭이 변경되면 프롭을 참조하는 모든 컴포넌트가 수정되어야 해요. 예를 들어, 더 이상 아이템에 대한 추천 기능이 사라져서 `recommendedItems` 를 삭제해야 한다면, 연관된 모든 컴포넌트에서 삭제해야 하죠. -코드 수정범위가 필요 이상으로 넓고, 결합도가 낮아요. +코드 수정범위가 필요 이상으로 넓고, 결합도가 높아요. ## ✏️ 개선해보기 diff --git a/en/code/examples/item-edit-modal.md b/en/code/examples/item-edit-modal.md index 5dd3b6c8..de727587 100644 --- a/en/code/examples/item-edit-modal.md +++ b/en/code/examples/item-edit-modal.md @@ -75,7 +75,7 @@ When Props Drilling occurs, the number of components unnecessarily referencing t If the props change, all components referencing them need to be modified. For example, if the recommendation feature for items is removed and `recommendedItems` needs to be deleted, it must be removed from all related components. -The scope of code modification becomes unnecessarily wide, and the coupling is low. +The scope of code modification becomes unnecessarily wide, and the coupling is high. ## ✏️ Work on Improving