]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏️ Fix typo in [en] tutorial: exception handeling (#1326)
authorChen Rotem Levy <chenl@users.noreply.github.com>
Sun, 17 May 2020 11:40:55 +0000 (14:40 +0300)
committerGitHub <noreply@github.com>
Sun, 17 May 2020 11:40:55 +0000 (13:40 +0200)
* Fix typo

* ✏️ Fix typo

Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
docs/en/docs/tutorial/handling-errors.md

index 99ecc2dc82990bb4f83fc46a0b023c3c8ab44da3..19a6c568491fb4dcae2d172e35860f9eb101d931 100644 (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.
 
-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.