From 4365e517f2ff8826cdfb3e64bac8d5a8a0549030 Mon Sep 17 00:00:00 2001 From: Hadrien David Date: Tue, 18 Feb 2025 11:44:47 -0500 Subject: [PATCH] chore: fix a typo in the doc --- src/fastsqla.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastsqla.py b/src/fastsqla.py index 1a2833b..c0c260d 100644 --- a/src/fastsqla.py +++ b/src/fastsqla.py @@ -225,7 +225,7 @@ async def new_session() -> AsyncGenerator[AsyncSession, None]: * If no exceptions are raised, the session is automatically committed. * If an exception is raised, the session is automatically rolled back. -* In alls cases, the session is closed and the associated connection is returned to the +* In all cases, the session is closed and the associated connection is returned to the connection pool. Example: