Browse Source

Fixed more formatting issues

pull/12529/head
Nir Schulman 8 months ago
parent
commit
8e66dfcfb2
  1. 1
      docs/en/docs/tutorial/dependencies/lifespan-scoped-dependencies.md

1
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.

Loading…
Cancel
Save