Skip to content

Commit 3949148

Browse files
committed
Minor additions
1 parent 8907c00 commit 3949148

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed

docfx_project/articles/tutorials/connect-nightly/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ uid: tutorial_connect_nightly
33
title: "Connect to nightly builds"
44
---
55

6+
> [!WARNING]
7+
> The nightly builds can be unstable. Please help us find bugs by [reporting issues on GitHub](https://github.com/GmodNET/GmodDotNet/issues).
8+
9+
610
# Connect to the nightly builds and use it in your project
711
Connect to the latest version of Gmod.NET to use the newest features and work with the `.NET 5.0`.
812

docfx_project/articles/tutorials/hello-world-detailed/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ After all those instructions we finally get to the most important part of this m
332332

333333
1. We'll explain a bit of the code below in a moment. First copy the following code inside the Load method **between the curly brackets**:
334334

335-
```lua
335+
```csharp
336336
lua.PushSpecial(GmodNET.API.SPECIAL_TABLES.SPECIAL_GLOB);
337337
lua.GetField(-1, "print");
338338
lua.PushString("Hello World!");

docfx_project/articles/tutorials/hello-world/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ After all those instructions we finally get to the most important part of this m
160160

161161
1. First copy the following code inside the Load method **between the curly brackets**:
162162

163-
```lua
163+
```csharp
164164
lua.PushSpecial(GmodNET.API.SPECIAL_TABLES.SPECIAL_GLOB);
165165
lua.GetField(-1, "print");
166166
lua.PushString("Hello World!");

docfx_project/articles/tutorials/overview.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
uid: tutorials
3+
title: Tutorials
4+
---
5+
16
# Tutorials
27

38
Check out the menu on the left for a list of all tutorials.

docfx_project/index.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1-
# GmodDotNet documentation
1+
# Gmod.NET documentation
22

3-
This is an early preview of the GmodDotNet documentation. Work is still in progress.
3+
Cross-platform .NET Module/Plugin platform for Garry's Mod powered by [.NET Core](https://dotnet.microsoft.com/).
4+
5+
6+
7+
## Get started
8+
9+
- Check out the **<xref:tutorials>**
10+
- [**Report issues on GitHub**](https://github.com/GmodNET/GmodDotNet/issues)

0 commit comments

Comments
 (0)