From 2ba43a5c9027bab9ca7ade5bb0353e8741fa45fa Mon Sep 17 00:00:00 2001 From: timothy <53824764+timothy-jeong@users.noreply.github.com> Date: Tue, 11 Feb 2025 16:22:35 +0900 Subject: [PATCH] Update docs/ko/docs/tutorial/extra-models.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit change word 'Unwrapping' to 'Unpacking' Co-authored-by: Lee Yesong (이예송) --- docs/ko/docs/tutorial/extra-models.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ko/docs/tutorial/extra-models.md b/docs/ko/docs/tutorial/extra-models.md index 943bfcb7a..9bf96685e 100644 --- a/docs/ko/docs/tutorial/extra-models.md +++ b/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 모델을 생성할 수 있습니다.