From a59408f68cf2369490a6d420466204702b417615 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sun, 30 Dec 2018 22:18:45 +0400 Subject: [PATCH] :pencil2: Fix typo in dependencies docs --- docs/tutorial/dependencies/intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/dependencies/intro.md b/docs/tutorial/dependencies/intro.md index 73ccde672..486d9a7f0 100644 --- a/docs/tutorial/dependencies/intro.md +++ b/docs/tutorial/dependencies/intro.md @@ -12,7 +12,7 @@ If you look at it, path operation functions are declared to be used whenever a p Actually, all (or most) of the web frameworks work in this same way. -You never call those functions directly. The are called by your framework (in this case, **FastAPI**). +You never call those functions directly. They are called by your framework (in this case, **FastAPI**). With the Dependency Injection system, you can also tell **FastAPI** that your path operation function also "depends" on something else that should be executed before your path operation function, and **FastAPI** will take care of executing it and "injecting" the results.