From a967c95a1413059ea834ffa98811e9149518647e Mon Sep 17 00:00:00 2001 From: Gleb Radutsky Date: Sat, 9 Sep 2023 14:33:14 -0400 Subject: [PATCH] Update connections_and_transactions.md typo fix --- docs/connections_and_transactions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/connections_and_transactions.md b/docs/connections_and_transactions.md index 11044655..2b8f6b68 100644 --- a/docs/connections_and_transactions.md +++ b/docs/connections_and_transactions.md @@ -100,7 +100,7 @@ async def create_users(request): Transaction state is tied to the connection used in the currently executing asynchronous task. If you would like to influence an active transaction from another task, the connection must be -shared. This state is _inherited_ by tasks that are share the same connection: +shared. This state is _inherited_ by tasks that share the same connection: ```python async def add_excitement(connnection: databases.core.Connection, id: int):