From cc3d795bea415d89601a01b2032d987de7e9b97f Mon Sep 17 00:00:00 2001 From: Xie Wei <39515546+waynerv@users.noreply.github.com> Date: Sun, 17 May 2020 18:56:57 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=20Fix=202=20typos=20in=20docs=20(#132?= =?UTF-8?q?4)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/en/docs/features.md | 2 +- docs/en/docs/tutorial/first-steps.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/docs/features.md b/docs/en/docs/features.md index 8b5bb51f1..0e6daad1c 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 2d212762e..11a9d16e0 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!}