From 8e66dfcfb20fe38d56834d24bb2089b023b192bb Mon Sep 17 00:00:00 2001 From: Nir Schulman Date: Sat, 23 Nov 2024 22:17:13 +0200 Subject: [PATCH] Fixed more formatting issues --- .../docs/tutorial/dependencies/lifespan-scoped-dependencies.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/en/docs/tutorial/dependencies/lifespan-scoped-dependencies.md b/docs/en/docs/tutorial/dependencies/lifespan-scoped-dependencies.md index ba2c162aa..ba46da330 100644 --- a/docs/en/docs/tutorial/dependencies/lifespan-scoped-dependencies.md +++ b/docs/en/docs/tutorial/dependencies/lifespan-scoped-dependencies.md @@ -69,6 +69,7 @@ In this example, the `read_users` and `read_groups` endpoints are using `use_cache=True`. That means that we'll have a total of 3 connections created for the duration of the application's lifespan: + * One connection will be shared across all requests for the `read_items` and `read_item` endpoints. * A second connection will be shared across all requests for the `read_users` endpoint. * A third and final connection will be shared across all requests for the `read_groups` endpoint.