diff --git a/docs/_overwrites/Commands/DontInjectAttribute.Overwrite.md b/docs/_overwrites/Commands/DontInjectAttribute.Overwrite.md index e395f2058..c5bad261f 100644 --- a/docs/_overwrites/Commands/DontInjectAttribute.Overwrite.md +++ b/docs/_overwrites/Commands/DontInjectAttribute.Overwrite.md @@ -6,7 +6,7 @@ remarks: *content The attribute can be applied to a public settable property inside a @Discord.Commands.ModuleBase based class. By applying this attribute, the marked property will not be automatically injected of the -dependency. See [Dependency Injection](xref:Guides.Commands.Intro#dependency-injection) +dependency. See [Dependency Injection](xref:Guides.Commands.DI) to learn more. --- diff --git a/docs/faq/commands/Commands.md b/docs/faq/commands/Commands.md index 7d0bdf8bc..4811b02be 100644 --- a/docs/faq/commands/Commands.md +++ b/docs/faq/commands/Commands.md @@ -56,8 +56,8 @@ Service is often used to hold data externally, so that they will persist throughout execution. Think of it like a chest that holds whatever you throw at it that won't be affected by anything unless you want it to. Note that you should also learn Microsoft's -implementation of [Dependency Injection] \([video]) before proceeding, as well -as how it works in [Discord.Net](xref:Guides.Commands.Intro#usage-in-modules). +implementation of [Dependency Injection] \([video]) before proceeding, +as well as how it works in [Discord.Net](xref:Guides.Commands.DI#usage-in-modules). A brief example of service and dependency injection can be seen below.