From bbb22813e69526ec57123c29c29affafb7f06369 Mon Sep 17 00:00:00 2001 From: kangni <2881570+kangni@users.noreply.github.com> Date: Mon, 8 Feb 2021 02:06:08 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=20Fix=20typo/clarify=20docs=20for=20S?= =?UTF-8?q?QL=20(Relational)=20Databases=20(#2393)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit By way of code example, I think this is a typo. btw, the tutorial is very well written. --- docs/en/docs/tutorial/sql-databases.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/docs/tutorial/sql-databases.md b/docs/en/docs/tutorial/sql-databases.md index b1fdf75ca..c623fad29 100644 --- a/docs/en/docs/tutorial/sql-databases.md +++ b/docs/en/docs/tutorial/sql-databases.md @@ -364,7 +364,7 @@ Create utility functions to: * Read a single user by ID and by email. * Read multiple users. -* Read a single item. +* Read multiple items. ```Python hl_lines="1 3 6-7 10-11 14-15 27-28" {!../../../docs_src/sql_databases/sql_app/crud.py!}