]> git.ipfire.org Git - thirdparty/fastapi/sqlmodel.git/commitdiff
✏ Fix typos in `docs/databases.md` and `docs/tutorial/index.md` (#35)
authorPrashanth Rao <35005448+prrao87@users.noreply.github.com>
Sat, 27 Aug 2022 21:36:58 +0000 (17:36 -0400)
committerGitHub <noreply@github.com>
Sat, 27 Aug 2022 21:36:58 +0000 (23:36 +0200)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
docs/databases.md
docs/tutorial/index.md

index e29c73e506bd252c575e8430db45e285e689d4eb..f1aaf663ab9709760ff703f8096966ec704c0fb6 100644 (file)
@@ -274,7 +274,7 @@ The language is called **SQL**, the name comes from for **Structured Query Langu
 
 Nevertheless, the language is not only used to *query* for data. It is also used to create records/rows, to update them, to delete them. And to manipulate the database, create tables, etc.
 
-This language is supported by all these databases that handle multiple tables, that's why they are called **SQL Databases**. Although, each database has small variations in the SQL language they support.
+This language is supported by all these databases that handle multiple tables, that's why they are called **SQL Databases**. Although, each database has small variations in the SQL language they support (*dialect*).
 
 Let's imagine that the table holding the heroes is called the `hero` table. An example of a SQL query to get all the data from it could look like:
 
index 398cabafb4f9a89ce3806b2ca460526487c68ea1..33cf6226c4631abc75d238abd75df12a810ad38e 100644 (file)
@@ -6,7 +6,7 @@ If you need a refresher about how to use Python type hints (type annotations), c
 
 You can also check the <a href="https://mypy.readthedocs.io/en/latest/cheat_sheet_py3.html" class="external-link" target="_blank">mypy cheat sheet</a>.
 
-**SQLModel** uses type annotations for everything, this way you can use a familiar Python syntax and get all the editor support posible, with autocompletion and in-editor error checking.
+**SQLModel** uses type annotations for everything, this way you can use a familiar Python syntax and get all the editor support possible, with autocompletion and in-editor error checking.
 
 ## Intro