From 6ae4a1988793dea9ff7722d3aded337b5d924134 Mon Sep 17 00:00:00 2001 From: Yuki Watanabe Date: Thu, 16 May 2024 10:27:53 +0900 Subject: [PATCH] fix: change highlight line --- docs/ja/docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ja/docs/index.md b/docs/ja/docs/index.md index d684c333e..86a22da61 100644 --- a/docs/ja/docs/index.md +++ b/docs/ja/docs/index.md @@ -168,7 +168,7 @@ def read_item(item_id: int, q: Union[str, None] = None): `async` / `await`を使用するときは、 `async def`を使います: -```Python hl_lines="7 12" +```Python hl_lines="9 14" from typing import Union from fastapi import FastAPI