✏️ Fix typo in [en] tutorial: exception handeling (#1326)

* Fix typo

* ✏️ Fix typo

Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
This commit is contained in:
Chen Rotem Levy 2020-05-17 14:40:55 +03:00 committed by GitHub
parent fc70a2f36f
commit 08e8dfccbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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. **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. You can override these exception handlers with your own.