]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix typo (#12495)
authorAdriaan Joubert <45142747+adriaanjoubert@users.noreply.github.com>
Thu, 3 Apr 2025 17:56:29 +0000 (20:56 +0300)
committerFederico Caselli <cfederico87@gmail.com>
Thu, 3 Apr 2025 17:57:57 +0000 (19:57 +0200)
(cherry picked from commit 51007fe428d87e5d5bfc2c04cd4224fda2e00879)

doc/build/errors.rst

index 237d5d0ab3ba56c92164577b843e632285b16566..99701ba2790d71d2bb41b335576d32557bee30d0 100644 (file)
@@ -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