]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix typo in docs (#11715)
authorGabi Nagy <gabrian.nagy@gmail.com>
Fri, 9 Aug 2024 19:54:24 +0000 (21:54 +0200)
committerGitHub <noreply@github.com>
Fri, 9 Aug 2024 19:54:24 +0000 (21:54 +0200)
doc/build/orm/session_basics.rst

index 4b47be43bfc6d419e05b5f20b6dbc6d0ea7bd734..0c04e34b2ed23c147270fe14823ed83286b4e49c 100644 (file)
@@ -154,7 +154,7 @@ The purpose of :class:`_orm.sessionmaker` is to provide a factory for
 :class:`_orm.Session` objects with a fixed configuration.   As it is typical
 that an application will have an :class:`_engine.Engine` object in module
 scope, the :class:`_orm.sessionmaker` can provide a factory for
-:class:`_orm.Session` objects that are against this engine::
+:class:`_orm.Session` objects that are constructed against this engine::
 
     from sqlalchemy import create_engine
     from sqlalchemy.orm import sessionmaker