From: Xie Wei <39515546+waynerv@users.noreply.github.com> Date: Sun, 17 May 2020 10:56:57 +0000 (+0800) Subject: ✏ Fix 2 typos in docs (#1324) X-Git-Tag: 0.55.0~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cc3d795bea415d89601a01b2032d987de7e9b97f;p=thirdparty%2Ffastapi%2Ffastapi.git ✏ Fix 2 typos in docs (#1324) --- diff --git a/docs/en/docs/features.md b/docs/en/docs/features.md index 8b5bb51f17..0e6daad1c7 100644 --- a/docs/en/docs/features.md +++ b/docs/en/docs/features.md @@ -71,7 +71,7 @@ my_second_user: User = User(**second_user_data) ### Editor support -All the framework was designed to be easy and intuitive to use, all the decisions where tested on multiple editors even before starting development, to ensure the best development experience. +All the framework was designed to be easy and intuitive to use, all the decisions were tested on multiple editors even before starting development, to ensure the best development experience. In the last Python developer survey it was clear that the most used feature is "autocompletion". diff --git a/docs/en/docs/tutorial/first-steps.md b/docs/en/docs/tutorial/first-steps.md index 2d212762ed..11a9d16e09 100644 --- a/docs/en/docs/tutorial/first-steps.md +++ b/docs/en/docs/tutorial/first-steps.md @@ -239,7 +239,7 @@ So, in OpenAPI, each of the HTTP methods is called an "operation". We are going to call them "**operations**" too. -#### Define a *path operation function* +#### Define a *path operation decorator* ```Python hl_lines="6" {!../../../docs_src/first_steps/tutorial001.py!}