]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏ Fix typo/clarify docs for SQL (Relational) Databases (#2393)
authorkangni <2881570+kangni@users.noreply.github.com>
Sun, 7 Feb 2021 18:06:08 +0000 (02:06 +0800)
committerGitHub <noreply@github.com>
Sun, 7 Feb 2021 18:06:08 +0000 (19:06 +0100)
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

index b1fdf75cadeeee4e97f2b3e534249e4a74b02e61..c623fad2983804c689b065dd496d70e95735df05 100644 (file)
@@ -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!}