From d6fbfc68c9fcff58ce0cd7aa7d178cea96fb8026 Mon Sep 17 00:00:00 2001 From: timothy <53824764+timothy-jeong@users.noreply.github.com> Date: Wed, 12 Feb 2025 00:32:18 +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 '타입 주석' to '타입 어노테이션' 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 e1c38e63d..a56e2a977 100644 --- a/docs/ko/docs/tutorial/extra-models.md +++ b/docs/ko/docs/tutorial/extra-models.md @@ -188,7 +188,7 @@ OpenAPI에서는 이를 `anyOf`로 정의합니다. 이 경우, 이를 **타입 어노테이션(type annotation)** 이 아닌 **인자 값(argument value)** 으로 전달하고 있기 때문에 Python 3.10에서도 `Union`을 사용해야 합니다. -만약 타입 주석에 사용한다면, 다음과 같이 수직 막대(|)를 사용할 수 있습니다: +만약 타입 어노테이션에 사용한다면, 다음과 같이 수직 막대(|)를 사용할 수 있습니다: ```Python some_variable: PlaneItem | CarItem