From 387be54e60e96455de6ecaadf8ff20df8304c760 Mon Sep 17 00:00:00 2001 From: Gabi Nagy Date: Fri, 9 Aug 2024 21:54:24 +0200 Subject: [PATCH] Fix typo in docs (#11715) --- doc/build/orm/session_basics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/build/orm/session_basics.rst b/doc/build/orm/session_basics.rst index 4b47be43bf..0c04e34b2e 100644 --- a/doc/build/orm/session_basics.rst +++ b/doc/build/orm/session_basics.rst @@ -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 -- 2.47.2