From 08e8dfccbe4cf7b12b98a67551164a7c886e647e Mon Sep 17 00:00:00 2001 From: Chen Rotem Levy Date: Sun, 17 May 2020 14:40:55 +0300 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix=20typo=20in=20[en]=20t?= =?UTF-8?q?utorial:=20exception=20handeling=20(#1326)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix typo * ✏️ Fix typo Co-authored-by: Sebastián Ramírez --- docs/en/docs/tutorial/handling-errors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/docs/tutorial/handling-errors.md b/docs/en/docs/tutorial/handling-errors.md index 99ecc2dc8..19a6c5684 100644 --- a/docs/en/docs/tutorial/handling-errors.md +++ b/docs/en/docs/tutorial/handling-errors.md @@ -115,7 +115,7 @@ So, you will receive a clean error, with an HTTP status code of `418` and a JSON **FastAPI** has some default exception handlers. -These handlers are in charge or returning the default JSON responses when you `raise` an `HTTPException` and when the request has invalid data. +These handlers are in charge of returning the default JSON responses when you `raise` an `HTTPException` and when the request has invalid data. You can override these exception handlers with your own.