]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏️ Fix typo in `docs/ja/docs/tutorial/handling-errors.md` (#13814)
authorHirokatsu Endo <ruzia@idealab.jp>
Sun, 22 Jun 2025 14:35:27 +0000 (23:35 +0900)
committerGitHub <noreply@github.com>
Sun, 22 Jun 2025 14:35:27 +0000 (16:35 +0200)
docs/ja/docs/tutorial/handling-errors.md

index 9a46cc738e66c7dbe5ffd7c981875a4494144d29..37315b0872f868c81419680b5e3c63ec6924a24c 100644 (file)
@@ -63,7 +63,7 @@ Pythonの例外なので、`return`ではなく、`raise`です。
 
 `HTTPException`を発生させる際には、`str`だけでなく、JSONに変換できる任意の値を`detail`パラメータとして渡すことができます。
 
-`dist`や`list`などを渡すことができます。
+`dict`や`list`などを渡すことができます。
 
 これらは **FastAPI** によって自動的に処理され、JSONに変換されます。