Skip to content

Commit fe9b662

Browse files
Fix double tip
1 parent db9b2cf commit fe9b662

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

docs/en/docs/advanced/sql-databases-sqlalchemy.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ This tutorial will cover the usage of SQLAlchemy async parts as an ORM.
1010

1111
This tutorial expects SQLAlchemy >= 1.4.
1212

13-
14-
!!! tip
15-
We strongly suggest going through the non async tutorial first ([SQL (Relational) Databases](../tutorial/sql-databases.md){.internal-link target=_blank}), since this tutorial only covers the async parts of SQLAlchemy.
16-
1713
## File structure
1814

1915
For this example, let's say you have a directory named `my_super_project` that contains a sub-directory called `sql_app` with a structure like this:
@@ -42,7 +38,7 @@ To use the async parts you will need to import `create_async_engine` instead of
4238
```
4339

4440
!!! tip
45-
If you're using postgresql you need to append `asyncpg` to the database string, as shown above.
41+
If you're using PostgreSQL you need to append `asyncpg` to the database string, as shown above.
4642

4743
You will also need to `pip install asyncpg`
4844

0 commit comments

Comments
 (0)