From: Adriaan Joubert <45142747+adriaanjoubert@users.noreply.github.com> Date: Thu, 3 Apr 2025 17:56:29 +0000 (+0300) Subject: Fix typo (#12495) X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=51007fe428d87e5d5bfc2c04cd4224fda2e00879;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix typo (#12495) --- diff --git a/doc/build/errors.rst b/doc/build/errors.rst index e3f6cb9032..10ca4cf252 100644 --- a/doc/build/errors.rst +++ b/doc/build/errors.rst @@ -136,7 +136,7 @@ What causes an application to use up all the connections that it has available? upon to release resources in a timely manner. A common reason this can occur is that the application uses ORM sessions and - does not call :meth:`.Session.close` upon them one the work involving that + does not call :meth:`.Session.close` upon them once the work involving that session is complete. Solution is to make sure ORM sessions if using the ORM, or engine-bound :class:`_engine.Connection` objects if using Core, are explicitly closed at the end of the work being done, either via the appropriate