From edd630a9ee4069e0f0df70ebbd08cf3a4ec9363c Mon Sep 17 00:00:00 2001 From: Jonathan B Coe Date: Thu, 4 Jun 2020 13:30:29 +0100 Subject: [PATCH] Remove markdown not recognised by GitHub Remove `{.good}` and `{.bad}` and replace with comments. --- csharp-style.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/csharp-style.md b/csharp-style.md index d7438c7..417e499 100644 --- a/csharp-style.md +++ b/csharp-style.md @@ -462,14 +462,15 @@ following remedies: Consider the following example: -```c# {.bad} -// What are these arguments? +```c# +// Bad - what are these arguments? DecimalNumber product = CalculateProduct(values, 7, false, null); ``` versus: -```c# {.good} +```c# +// Good ProductOptions options = new ProductOptions(); options.PrecisionDecimals = 7; options.UseCache = CacheUsage.DontUseCache;