]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:speech_balloon: Rephrase handling-errors to remove gender while keeping readability...
authorSebastián Ramírez <tiangolo@gmail.com>
Mon, 9 Dec 2019 17:59:29 +0000 (18:59 +0100)
committerGitHub <noreply@github.com>
Mon, 9 Dec 2019 17:59:29 +0000 (18:59 +0100)
docs/tutorial/handling-errors.md

index becb84fd515f2e1283535a16c87dfa4b7bd12c7c..5d364fd0b8237452f0291d7c6961a86a3f6daebb 100644 (file)
@@ -4,9 +4,9 @@ This client could be a browser with a frontend, the code from someone else, an I
 
 You could need to tell that client that:
 
-* He doesn't have enough privileges for that operation.
-* He doesn't have access to that resource.
-* The item he was trying to access doesn't exist.
+* The client doesn't have enough privileges for that operation.
+* The client doesn't have access to that resource.
+* The item the client was trying to access doesn't exist.
 * etc.
 
 In these cases, you would normally return an **HTTP status code** in the range of **400** (from 400 to 499).