Browse Source

Update docs/ko/docs/tutorial/extra-models.md

change word 'Unwrapping' to 'Unpacking'

Co-authored-by: Lee Yesong (이예송) <[email protected]>
pull/13063/head
timothy 2 months ago
committed by jts8257
parent
commit
2ba43a5c90
  1. 2
      docs/ko/docs/tutorial/extra-models.md

2
docs/ko/docs/tutorial/extra-models.md

@ -117,7 +117,7 @@ UserInDB(**user_dict)
UserInDB(**user_in.dict())
```
...왜냐하면 `user_in.dict()``dict`이며, 이를 `**`로 Python이 "언랩(unwrap)"하도록 하여 `UserInDB`에 전달하기 때문입니다.
...왜냐하면 `user_in.dict()``dict`이며, 이를 `**`로 Python이 "언팩(unpack)"하도록 하여 `UserInDB`에 전달하기 때문입니다.
따라서, 다른 Pydantic 모델의 데이터를 사용하여 새로운 Pydantic 모델을 생성할 수 있습니다.

Loading…
Cancel
Save