8000 ✏️ Fix typos in `docs/en/docs/alternatives.md` and `docs/en/docs/tutorial/dependencies/index.md` by s111d · Pull Request #10906 · fastapi/fastapi · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix typo: inconsistent term usage
Looks like "plug-ins" is used across the docs, and it is a common plural form in general.
  • Loading branch information
s111d authored Jan 8, 2024
commit 16f352b39f48883bf693b438050a79182a7aaa32
2 changes: 1 addition & 1 deletion docs/en/docs/tutorial/dependencies/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ Other common terms for this same idea of "dependency injection" are:

## **FastAPI** plug-ins

Integrations and "plug-in"s can be built using the **Dependency Injection** system. But in fact, there is actually **no need to create "plug-ins"**, as by using dependencies it's possible to declare an infinite number of integrations and interactions that become available to your *path operation functions*.
Integrations and "plug-ins" can be built using the **Dependency Injection** system. But in fact, there is actually **no need to create "plug-ins"**, as by using dependencies it's possible to declare an infinite number of integrations and interactions that become available to your *path operation functions*.

And dependencies can be created in a very simple and intuitive way that allow you to just import the Python packages you need, and integrate them with your API functions in a couple of lines of code, *literally*.

Expand Down
0