From: Gabi Nagy Date: Fri, 9 Aug 2024 19:54:24 +0000 (+0200) Subject: Fix typo in docs (#11715) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=387be54e60e96455de6ecaadf8ff20df8304c760;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix typo in docs (#11715) --- 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