]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏ Fix typo in Tutorial - Handling Errors (#2486)
authorjohnthagen <johnthagen@users.noreply.github.com>
Sun, 7 Feb 2021 18:18:37 +0000 (13:18 -0500)
committerGitHub <noreply@github.com>
Sun, 7 Feb 2021 18:18:37 +0000 (19:18 +0100)
docs/en/docs/tutorial/handling-errors.md

index 9ea2f2ad840bea45146c13d7370c28835c9d53d9..4fa82d5d728dde896f3edb18128e807a7986b73b 100644 (file)
@@ -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!}