]> git.ipfire.org Git - thirdparty/fastapi/sqlmodel.git/commitdiff
✏️ Fix typo in `docs/tutorial/create-db-and-table.md` (#1252)
authorArianHamdi <59548833+ArianHamdi@users.noreply.github.com>
Thu, 2 Jan 2025 21:16:19 +0000 (01:16 +0400)
committerGitHub <noreply@github.com>
Thu, 2 Jan 2025 21:16:19 +0000 (21:16 +0000)
docs/tutorial/create-db-and-table.md

index 978413c334202045747a136dca7868fadf8dafc1..c1076d5887667509051218af9aa49168e1596949 100644 (file)
@@ -446,7 +446,7 @@ Now we would be able to, for example, import the `Hero` class in some other file
 
 We prevented the side effects when importing something from your `app.py` file.
 
-But we still want it to **create the database and table** when we call it with Python directly as an independent script from the terminal, just as as above.
+But we still want it to **create the database and table** when we call it with Python directly as an independent script from the terminal, just as above.
 
 /// tip