diff --git a/docs/guides/getting_started/installing.md b/docs/guides/getting_started/installing.md index 589225c76..372009e90 100644 --- a/docs/guides/getting_started/installing.md +++ b/docs/guides/getting_started/installing.md @@ -80,7 +80,7 @@ you're installing from the developer feed. 1. Create a new project for your bot. 2. Add `Discord.Net` to your .csproj. -[!code-xml[Sample .csproj](samples/project.csproj)] +[!code[Sample .csproj](samples/project.csproj)] [NuGet.Config file]: #configuring-nuget-without-visual-studio @@ -145,4 +145,4 @@ your application, where the project solution is located. Paste the following snippets into this configuration file, adding any additional feeds as necessary. -[!code-xml[NuGet Configuration](samples/nuget.config)] +[!code[NuGet Configuration](samples/nuget.config)] diff --git a/docs/guides/getting_started/samples/project.csproj b/docs/guides/getting_started/samples/project.csproj index 085d81c03..a964bbc26 100644 --- a/docs/guides/getting_started/samples/project.csproj +++ b/docs/guides/getting_started/samples/project.csproj @@ -1,8 +1,9 @@ - // The following may differ depending on the latest version of - // .NET Core Framework or Discord.NET. - + Exe netcoreapp1.1 diff --git a/docs/guides/getting_started/terminology.md b/docs/guides/getting_started/terminology.md index 74f7a6259..5685477dd 100644 --- a/docs/guides/getting_started/terminology.md +++ b/docs/guides/getting_started/terminology.md @@ -7,13 +7,13 @@ title: Terminology ## Preface -Most terms for objects remain the same between 0.9 and 1.0. The major -difference is that the ``Server`` is now called ``Guild`` to stay in -line with Discord internally. +Most terms for objects remain the same between 0.9 and 1.0 and above. +The major difference is that the ``Server`` is now called ``Guild`` +to stay in line with Discord internally. ## Implementation Specific Entities -Discord.Net 1.0 is split into a core library and three different +Discord.Net is split into a core library and three different implementations - `Discord.Net.Core`, `Discord.Net.Rest`, `Discord.Net.Rpc`, and `Discord.Net.WebSockets`.