]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:pencil2: Fix typo in dependencies docs
authorSebastián Ramírez <tiangolo@gmail.com>
Sun, 30 Dec 2018 18:18:45 +0000 (22:18 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Sun, 30 Dec 2018 18:18:45 +0000 (22:18 +0400)
docs/tutorial/dependencies/intro.md

index 73ccde6726fee2093d71b84ef2d450c30a87be2f..486d9a7f01e98d57a39aeee91d191223192fbd92 100644 (file)
@@ -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.