diff --git a/docs/glossary.md b/docs/glossary.md index 2a76b20..9d02463 100644 --- a/docs/glossary.md +++ b/docs/glossary.md @@ -215,7 +215,7 @@ IoC See {term}`Inversion of Control`. Inversion of Control - Inversion of Control (IoC) is when a program invokes something without directly depending on it. + Inversion of Control (IoC) is when a program invokes something without directly depending on it. Instead, some form of indirection is used. That's why it's sometimes called the *Hollywood Principle*: "Don't call us, we'll call you." @@ -225,7 +225,7 @@ Inversion of Control A framework is configured so that it *indirectly* calls code on which it has no direct dependency. Inversion of control can be achieved using a few different patterns: - + - {term}`Dependency injection`. - {term}`Service locator`.