From 6750f450df70309592f5f96cfff25c4f832c4dd4 Mon Sep 17 00:00:00 2001 From: Aldo Mateli Date: Thu, 28 Dec 2023 21:14:12 +0100 Subject: [PATCH] Add period --- docs/pages/integrations/fastapi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/integrations/fastapi.md b/docs/pages/integrations/fastapi.md index 767cb38..fc29f5c 100644 --- a/docs/pages/integrations/fastapi.md +++ b/docs/pages/integrations/fastapi.md @@ -27,7 +27,7 @@ app = FastAPI() @app.get("/random") async def target( - # Wire annotation tells wireup that this argument should be injected + # Wire annotation tells wireup that this argument should be injected. random_service: Annotated[RandomService, Wire()], is_debug: Annotated[bool, Wire(param="env.debug")],