From c28bb1810fda1ec6358daa99c330fa1d9e2c2dbe Mon Sep 17 00:00:00 2001 From: Hsu Still <341464@gmail.com> Date: Fri, 29 Sep 2017 10:17:21 +0800 Subject: [PATCH] Revert 2 incorrect grammar corrections --- docs/guides/getting_started/intro.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/getting_started/intro.md b/docs/guides/getting_started/intro.md index 6c170b120..4c02ab147 100644 --- a/docs/guides/getting_started/intro.md +++ b/docs/guides/getting_started/intro.md @@ -150,7 +150,7 @@ soon be added to indicate when the client's state is ready for use (rewrite this section when possible). Finally, we will want to block the async main method from returning -until after the application has exited. To do this, we can await an +until after the application is exited. To do this, we can await an infinite delay or any other blocking method, such as reading from the console. @@ -158,7 +158,7 @@ The following lines can now be added: [!code-csharp[Create client](samples/intro/client.cs)] -At this point, feel free to start your program and see your bot comes +At this point, feel free to start your program and see your bot come online in Discord. >[!TIP]