Browse Source

Fix broken markdown links

pull/988/head
Hsu Still 7 years ago
parent
commit
98b4d30431
No known key found for this signature in database GPG Key ID: 8601A145FDA95209
2 changed files with 4 additions and 4 deletions
  1. +1
    -1
      docs/faq/Commands.md
  2. +3
    -3
      docs/faq/getting-started.md

+ 1
- 1
docs/faq/Commands.md View File

@@ -51,7 +51,7 @@ 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
implementation of [Dependency Injection] \([video]) before proceeding, as well
as how it works in [Discord.NET](../guides/commands/commands.md#usage-in-modules).

A brief example of service and dependency injection can be seen below.


+ 3
- 3
docs/faq/getting-started.md View File

@@ -5,7 +5,7 @@ First of all, welcome! You may visit us on our Discord should you
have any questions. Before you delve into using the library,
however, you should have some decent understanding of the language
you are about to use. This library touches on
[Task-based Asynchronous Pattern] (TAP), [polymorphism], [interface]
[Task-based Asynchronous Pattern] \(TAP), [polymorphism], [interface]
and many more advanced topics extensively. Please make sure that you
understand these topics to some extent before proceeding.
@@ -15,8 +15,8 @@ understand these topics to some extent before proceeding.

> [!TIP]
> Please note that you should *not* try to blindly copy paste
> the code. It is meant to be a template or a guide. It is not
> meant to be something that will work out of the box.
> the code. The examples are meant to be a template or a guide.
> It is not meant to be something that will work out of the box.
[Task-based Asynchronous Pattern]: https://docs.microsoft.com/en-us/dotnet/standard/asynchronous-programming-patterns/task-based-asynchronous-pattern-tap
[polymorphism]: https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/polymorphism


Loading…
Cancel
Save