Skip to content

Commit 8ec9168

Browse files
authoredDec 1, 2022
docs: Update sqlalchemy core tutorial link (encode#517)
The current link in the docs (specifying the version "latest") now points to the docs for the SQLAlchemy 2.0 beta. This PR changes the link to strictly specify version 1.4. It would also be possible to change the link to point to "stable" rather than "latest", however 1.4 seemed more appropriate as "stable" will likely point to 2.0 before this library migrates. Cheers
1 parent b78e519 commit 8ec9168

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎docs/database_queries.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ result = await database.fetch_one(query=query, values={"id": 1})
146146
Note that query arguments should follow the `:query_arg` style.
147147

148148
[sqlalchemy-core]: https://docs.sqlalchemy.org/en/latest/core/
149-
[sqlalchemy-core-tutorial]: https://docs.sqlalchemy.org/en/latest/core/tutorial.html
149+
[sqlalchemy-core-tutorial]: https://docs.sqlalchemy.org/en/14/core/tutorial.html
150150

151151
## Query result
152152

0 commit comments

Comments
 (0)
Please sign in to comment.