From: Sebastián Ramírez Date: Mon, 9 Dec 2019 17:59:29 +0000 (+0100) Subject: :speech_balloon: Rephrase handling-errors to remove gender while keeping readability... X-Git-Tag: 0.45.0~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a39efb029ff8a559d03eb73278237fde51fbaf78;p=thirdparty%2Ffastapi%2Ffastapi.git :speech_balloon: Rephrase handling-errors to remove gender while keeping readability (#780) --- diff --git a/docs/tutorial/handling-errors.md b/docs/tutorial/handling-errors.md index becb84fd51..5d364fd0b8 100644 --- a/docs/tutorial/handling-errors.md +++ b/docs/tutorial/handling-errors.md @@ -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).