From: Chen Rotem Levy Date: Sun, 17 May 2020 11:40:55 +0000 (+0300) Subject: ✏️ Fix typo in [en] tutorial: exception handeling (#1326) X-Git-Tag: 0.55.0~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=08e8dfccbe4cf7b12b98a67551164a7c886e647e;p=thirdparty%2Ffastapi%2Ffastapi.git ✏️ Fix typo in [en] tutorial: exception handeling (#1326) * Fix typo * ✏️ Fix typo Co-authored-by: Sebastián Ramírez --- diff --git a/docs/en/docs/tutorial/handling-errors.md b/docs/en/docs/tutorial/handling-errors.md index 99ecc2dc82..19a6c56849 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.