From 763a834064df84d6ec06e1fc081aee99e1390792 Mon Sep 17 00:00:00 2001 From: johnthagen Date: Mon, 7 Dec 2020 16:31:22 -0500 Subject: [PATCH] Fix grammar typo --- 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 9ea2f2ad840be..4fa82d5d728dd 100644 --- a/docs/en/docs/tutorial/handling-errors.md +++ b/docs/en/docs/tutorial/handling-errors.md @@ -39,7 +39,7 @@ This also means that if you are inside a utility function that you are calling i The benefit of raising an exception over `return`ing a value will be more evident in the section about Dependencies and Security. -In this example, when the client request an item by an ID that doesn't exist, raise an exception with a status code of `404`: +In this example, when the client requests an item by an ID that doesn't exist, raise an exception with a status code of `404`: ```Python hl_lines="11" {!../../../docs_src/handling_errors/tutorial001.py!}