]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏️ Fix typos in `/docs/reference/exceptions.md` and `/en/docs/reference/status.md...
authorClarence <clarencepenz@users.noreply.github.com>
Tue, 9 Jan 2024 16:30:58 +0000 (17:30 +0100)
committerGitHub <noreply@github.com>
Tue, 9 Jan 2024 16:30:58 +0000 (17:30 +0100)
docs/en/docs/reference/exceptions.md
docs/en/docs/reference/status.md

index adc9b91ce565909be0d9b30d7c740ccf3de3f516..7c480834928f9ec71cb0233b1b1d8bd904700aa8 100644 (file)
@@ -3,7 +3,7 @@
 These are the exceptions that you can raise to show errors to the client.
 
 When you raise an exception, as would happen with normal Python, the rest of the
-excecution is aborted. This way you can raise these exceptions from anywhere in the
+execution is aborted. This way you can raise these exceptions from anywhere in the
 code to abort a request and show the error to the client.
 
 You can use:
index 54fba9387e664e84a53ad3e6da9dd9f92cd58e91..a238007923be8e74eaf32a1bb0dc0adf57b5f565 100644 (file)
@@ -8,7 +8,7 @@ from fastapi import status
 
 `status` is provided directly by Starlette.
 
-It containes a group of named constants (variables) with integer status codes.
+It contains a group of named constants (variables) with integer status codes.
 
 For example: