Skip to content

Commit 763b48e

Browse files
younchongViolet-Bora-Lee
authored andcommitted
오타 수정
사소하지만 공부중에 오타를 확인해서 보냅니다. Reflect 부분 번역 업데이트가 안됐는데, 가능하면 도전해보겠습니다.
1 parent 39fc627 commit 763b48e

File tree

1 file changed

+1
-1
lines changed
  • 1-js/99-js-misc/01-proxy/03-observable

1 file changed

+1
-1
lines changed

1-js/99-js-misc/01-proxy/03-observable/task.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ user.observe((key, value) => {
2020
user.name = "John"; // alerts: SET name=John
2121
```
2222

23-
`makeObservable`가 반환하는 객체는 기존 객체와 동일지만 프로퍼티가 변경될 때 호출되는 함수인 `handler`를 설정해주는 메서드 `observe(handler)`가 있어야 합니다.
23+
`makeObservable`가 반환하는 객체는 기존 객체와 동일하지만 프로퍼티가 변경될 때 호출되는 함수인 `handler`를 설정해주는 메서드 `observe(handler)`가 있어야 합니다.
2424

2525
프로퍼티가 변경될 때마다 프로퍼티 키와 값을 인수로 받는 메서드 `handler(key, value)`가 호출되어야 하죠.
2626

0 commit comments

Comments
 (0)