From a5668ce049b02a1dce4b44a9df027679caac971d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20Prei=C3=9Fer?= Date: Thu, 8 Jun 2023 19:20:57 +0200 Subject: [PATCH] Use `csharp` instead of `c#` for code blocks for the package's README.md. (#259) NuGet doesn't seem to recognize `c#` and doesn't apply syntax highlighting for it, whereas `csharp` seems to work - see https://www.nuget.org/packages/MySqlConnector for an example. --- src/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/README.md b/src/README.md index a49cb5b..3001bed 100644 --- a/src/README.md +++ b/src/README.md @@ -33,7 +33,7 @@ $ dotnet add package wasmtime Replace the contents of `Program.cs` with the following code: -```c# +```csharp using System; using Wasmtime;